Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
UCC
OpenDispense2
Commits
68cc05f1
Commit
68cc05f1
authored
Mar 15, 2015
by
John Hodge
Browse files
Merge pull request
#4
from mtearle/master
Add config_modbus_port option to allow Modbus port to be set (for virtualcoke)
parents
9eb2276f
a79e48f6
Changes
3
Hide whitespace changes
Inline
Side-by-side
dispsrv.conf
View file @
68cc05f1
...
...
@@ -9,6 +9,8 @@ items_file items.cfg
# PLC - coke brain
#coke_modbus_address 130.95.13.73
coke_modbus_address
0
.
0
.
0
.
0
# 502 is default modbus port, virtualcoke uses 1502
coke_modbus_port
502
# Zero price items, defaults to off
test_mode
no
...
...
src/server/handler_coke.c
View file @
68cc05f1
...
...
@@ -49,6 +49,7 @@ tHandler gCoke_Handler = {
Coke_DoDispense
};
const
char
*
gsCoke_ModbusAddress
=
"130.95.13.73"
;
int
giCoke_ModbusPort
=
502
;
modbus_t
*
gCoke_Modbus
;
time_t
gtCoke_LastDispenseTime
;
time_t
gtCoke_LastReconnectTime
;
...
...
@@ -126,7 +127,7 @@ int Coke_int_ConnectToPLC(void)
if
(
!
gCoke_Modbus
)
{
gCoke_Modbus
=
modbus_new_tcp
(
gsCoke_ModbusAddress
,
502
);
gCoke_Modbus
=
modbus_new_tcp
(
gsCoke_ModbusAddress
,
giCoke_ModbusPort
);
if
(
!
gCoke_Modbus
)
{
perror
(
"coke - modbus_new_tcp"
);
...
...
src/server/main.c
View file @
68cc05f1
...
...
@@ -31,6 +31,7 @@ extern int gbServer_RunInBackground;
extern
int
giServer_Port
;
extern
const
char
*
gsItemListFile
;
extern
const
char
*
gsCoke_ModbusAddress
;
extern
int
giCoke_ModbusPort
;
extern
const
char
*
gsDoor_SerialPort
;
extern
bool
gbSyslogEnabled
;
...
...
@@ -126,13 +127,15 @@ int main(int argc, char *argv[])
gbServer_RunInBackground
=
Config_GetValue_Bool
(
"daemonise"
,
0
);
gsCokebankPath
=
Config_GetValue
(
"cokebank_database"
,
0
);
gsDoor_SerialPort
=
Config_GetValue
(
"door_serial_port"
,
0
);
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
);
gbSyslogEnabled
=
(
Config_GetValue_Bool
(
"disable_syslog"
,
0
)
==
0
);
gsCoke_ModbusAddress
=
Config_GetValue
(
"coke_modbus_address"
,
0
);
giCoke_ModbusPort
=
Config_GetValue_Int
(
"coke_modbus_port"
,
0
);
signal
(
SIGINT
,
sigint_handler
);
signal
(
SIGTERM
,
sigint_handler
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment