You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#ifndef _MODBUS_IO_SLAVE_H_
|
|
#define _MODBUS_IO_SLAVE_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void modbus_io_read(void);
|
|
void modbus_io_set_Output(uint8_t slave_adr, uint8_t nr, uint8_t state);
|
|
uint8_t modbus_io_read_Input(uint8_t nr, uint8_t type);
|
|
|
|
#endif
|