2018-06-28 15:45:41 +00:00
|
|
|
/*=====================================================================================
|
|
|
|
* Description:
|
|
|
|
* C file to define parameter storage instances
|
|
|
|
*====================================================================================*/
|
|
|
|
#include <stdint.h>
|
2019-11-26 05:16:25 +00:00
|
|
|
#include "modbus_params.h"
|
2018-06-28 15:45:41 +00:00
|
|
|
|
|
|
|
// Here are the user defined instances for device parameters packed by 1 byte
|
|
|
|
// These are keep the values that can be accessed from Modbus master
|
|
|
|
holding_reg_params_t holding_reg_params = { 0 };
|
|
|
|
|
|
|
|
input_reg_params_t input_reg_params = { 0 };
|
|
|
|
|
|
|
|
coil_reg_params_t coil_reg_params = { 0 };
|
|
|
|
|
|
|
|
discrete_reg_params_t discrete_reg_params = { 0 };
|
|
|
|
|