| 1234567891011121314151617181920212223242526272829303132 |
- #include "slave.h"
- static uint16_t _tab_registers[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
- static int get_map_buf(void *buf, int bufsz)
- {
- uint16_t *ptr = (uint16_t *)buf;
- pthread_mutex_lock(&slave_mtx);
- for (int i = 0; i < sizeof(_tab_registers) / sizeof(_tab_registers[0]); i++) {
- ptr[i] = _tab_registers[i];
- }
- pthread_mutex_unlock(&slave_mtx);
- return 0;
- }
- static int set_map_buf(int index, int len, void *buf, int bufsz)
- {
- uint16_t *ptr = (uint16_t *)buf;
- pthread_mutex_lock(&slave_mtx);
- for (int i = 0; i < len; i++) {
- _tab_registers[index + i] = ptr[index + i];
- }
- pthread_mutex_unlock(&slave_mtx);
- return 0;
- }
- const agile_modbus_slave_util_map_t register_maps[1] = {
- {0xFFF6, 0xFFFF, get_map_buf, set_map_buf}};
|