พัทธนันทน์ ศรีสุขนันทน์ / Mbed 2 deprecated TAIST_modbus

Dependencies:   mbed

Fork of TAIST_modbus by Supachai Vorapojpisut

Committer:
KRiTiRK
Date:
Wed Mar 21 09:09:40 2018 +0000
Revision:
7:cba97341e790
Parent:
2:6d1f053a6033
to kokokokokkokokkokokokookokoookoookokokokookori

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vsupacha 0:f306cb0263a6 1 #ifndef MODBUS_H
vsupacha 0:f306cb0263a6 2 #define MODBUS_H
vsupacha 0:f306cb0263a6 3
vsupacha 0:f306cb0263a6 4 #define FUNC_CODE 3
vsupacha 0:f306cb0263a6 5 #define ADDR_BASE 0x0000
vsupacha 0:f306cb0263a6 6 #define ADDR_RANGE 2
vsupacha 0:f306cb0263a6 7 #define MAX_FRAME_SIZE 20
vsupacha 0:f306cb0263a6 8
vsupacha 0:f306cb0263a6 9 void modbus_init(uint8_t id);
vsupacha 0:f306cb0263a6 10 uint16_t modbus_read(uint16_t offset);
vsupacha 0:f306cb0263a6 11 uint16_t modbus_update(uint8_t offset, uint16_t val);
vsupacha 0:f306cb0263a6 12 int modbus_parser(char ch, uint8_t *frame);
paicaloid 2:6d1f053a6033 13 uint8_t modbus_check(uint16_t offset, uint16_t count);
KRiTiRK 7:cba97341e790 14 void modbus_response(uint8_t reg_map, char *tmpPrint);
vsupacha 0:f306cb0263a6 15
vsupacha 0:f306cb0263a6 16 #endif // MODBUS_H