resolved changes

Disabled logger, it gave me errors on 'TAG'
This commit is contained in:
Obe Van Lierde
2023-11-26 16:17:35 +01:00
parent 74a5983e8a
commit 2976fbf2b3
2 changed files with 122 additions and 79 deletions

View File

@@ -1,13 +1,14 @@
/*
* modbus.h
/**
* @file modbus_tcp.h
*
* Created on: 6 nov. 2023
* @brief TCP Modbus handler
* Created on: Nov 6, 2023
* Author: Obe
*/
#ifndef INC_MODBUS_H_
#define INC_MODBUS_H_
#define MODBUSPOORT 502 //is the default
#define MODBUSPORT 502 //is the default
#include <tcp.h>
@@ -18,6 +19,12 @@
#include "llfs.h"
#include "log.h"
/**
* @fn void modbus_init
* @brief Initiallises the modbus tcp
*/
void modbus_init(void);
#endif /* INC_MODBUS_H_ */