18 lines
230 B
C
18 lines
230 B
C
/*
|
|
* modbus.h
|
|
*
|
|
* Created on: 6 nov. 2023
|
|
* Author: Obe
|
|
*/
|
|
|
|
#ifndef INC_MODBUS_H_
|
|
#define INC_MODBUS_H_
|
|
#define MODBUSPOORT 502 //is the default
|
|
|
|
|
|
#include <tcp.h>
|
|
|
|
void modbus_init( void );
|
|
|
|
#endif /* INC_MODBUS_H_ */
|