You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 line
439 B

  1. #ifndef PLSR_MODBUS_DATA_H
  2. #define PLSR_MODBUS_DATA_H
  3. #include "plsr_job.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /* Build a PLSR data source backed by the shared PLC data store. D/HD/FD and
  8. * X/M/HM are separate logical spaces; standard Modbus holding registers expose
  9. * D and standard Modbus coils expose M. */
  10. void PlsrModbusDataSourceInit(PLSR_DATA_SOURCE *source);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* PLSR_MODBUS_DATA_H */