Searched refs:iRegIndex (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-3.6.0/components/freemodbus/serial_master/modbus_controller/ |
D | mbc_serial_master.c | 569 USHORT iRegIndex; in eMBRegCoilsCBSerialMaster() local 575 iRegIndex = (usAddress % 8); in eMBRegCoilsCBSerialMaster() 579 UCHAR ucResult = xMBUtilGetBits((UCHAR*)pucRegCoilsBuf, iRegIndex, 1); in eMBRegCoilsCBSerialMaster() 580 xMBUtilSetBits(pucRegBuffer, iRegIndex - (usAddress % 8) , 1, ucResult); in eMBRegCoilsCBSerialMaster() 581 iRegIndex++; in eMBRegCoilsCBSerialMaster() 587 UCHAR ucResult = xMBUtilGetBits(pucRegBuffer, iRegIndex - (usAddress % 8), 1); in eMBRegCoilsCBSerialMaster() 588 xMBUtilSetBits((uint8_t*)pucRegCoilsBuf, iRegIndex, 1, ucResult); in eMBRegCoilsCBSerialMaster() 589 iRegIndex++; in eMBRegCoilsCBSerialMaster()
|
/hal_espressif-3.6.0/components/freemodbus/tcp_master/modbus_controller/ |
D | mbc_tcp_master.c | 683 USHORT iRegIndex; in eMBRegCoilsCBTcpMaster() local 689 iRegIndex = (usAddress % 8); in eMBRegCoilsCBTcpMaster() 693 UCHAR ucResult = xMBUtilGetBits((UCHAR*)pucRegCoilsBuf, iRegIndex, 1); in eMBRegCoilsCBTcpMaster() 694 xMBUtilSetBits(pucRegBuffer, iRegIndex - (usAddress % 8) , 1, ucResult); in eMBRegCoilsCBTcpMaster() 695 iRegIndex++; in eMBRegCoilsCBTcpMaster() 701 UCHAR ucResult = xMBUtilGetBits(pucRegBuffer, iRegIndex - (usAddress % 8), 1); in eMBRegCoilsCBTcpMaster() 702 xMBUtilSetBits((uint8_t*)pucRegCoilsBuf, iRegIndex, 1, ucResult); in eMBRegCoilsCBTcpMaster() 703 iRegIndex++; in eMBRegCoilsCBTcpMaster()
|