#ifndef _defaults_h #define _defaults_h ///////////////////////////////////////////////////// // The following are compiled in default values // NB. most of these can be changed at run time by command line options ///////////////////////////////////////////////////// // Is your default machine a S5? // Series 5 owners (who want long filename support) set this to true // Series 3 owners set this to false #define DEFAULT_MACHINE_S5 true // This is the default tcp/ip socket #define DEFAULT_SOCKET 7501 // This is the default baud rate for the psion serial link #define DEFAULT_BAUD_RATE 115200 // This is the default device driver for the serial link // N.B. This was "/dev/cua1" in the previous release #define DEFAULT_SERIAL_DEVICE "/dev/psion" // This is the default drive to use on the psion #define DEFAULT_DRIVE "C:\\" // This is the default base directory to use on the psion // - if no leading "/" is used, then this directory is taken as // the "home directory" #define DEFAULT_BASE_DIRECTORY "Documents\\" ////////////////////////////////////////////////////// // Debugging ////////////////////////////////////////////////////// #define PACKET_LAYER_DIAGNOSTICS false #define LINK_LAYER_DIAGNOSTICS false // #define SOCKET_DIAGNOSTICS ////////////////////////////////////////////////////// // Don't change the following lines ////////////////////////////////////////////////////// #define VERSION "1.8" #define DIR_COMMAND "dir" #define READ_COMMAND "read" #define WRITE_COMMAND "write" #define MKDIR_COMMAND "mkdir" #define DEL_COMMAND "del" #define FTP_COMMAND "ftp" #define NCP_SENDLEN 250 #define RFSV_SENDLEN 230 #endif