23 lines
328 B
C
23 lines
328 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>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include "lcd_api.h"
|
|
#include "llfs.h"
|
|
|
|
void modbus_init( void );
|
|
|
|
#endif /* INC_MODBUS_H_ */
|