Allowed transferring to/from disabled accounts
[tpg/opendispense2.git] / src / server / main.c
index c2ef55c..20520fc 100644 (file)
@@ -36,6 +36,7 @@ void  *Periodic_Thread(void *Unused);
 
 // === GLOBALS ===
  int   giDebugLevel = 0;
+ int   gbNoCostMode = 0;
 const char     *gsCokebankPath = "cokebank.db";
 // - Functions called every 20s (or so)
 #define ciMaxPeriodics 10
@@ -121,7 +122,9 @@ int main(int argc, char *argv[])
        gsCoke_ModbusAddress = Config_GetValue("coke_modbus_address", 0);
        giServer_Port        = Config_GetValue_Int("server_port", 0);
        gsItemListFile       = Config_GetValue("items_file", 0);
-       
+
+       gbNoCostMode         = (Config_GetValue_Bool("test_mode", 0) == 1);
+
        signal(SIGINT, sigint_handler);
        signal(SIGTERM, sigint_handler);
        
@@ -223,6 +226,7 @@ int InitSerial(const char *File, int BaudRate)
        {
        case 1200:      baud = B1200;   break;
        case 9600:      baud = B9600;   break;
+       case 115200:    baud = B115200; break;
        default:        close(fd);      return -1;
        }
        

UCC git Repository :: git.ucc.asn.au