/hal_espressif-3.4.0/components/freemodbus/modbus/ascii/ |
D | mbascii.c | 222 xNeedPoll = xMBPortSerialGetByte( ( CHAR * ) & ucByte ); in xMBASCIIReceiveFSM() 335 xMBPortSerialPutByte( ( CHAR )ucByte ); in xMBASCIITransmitFSM() 351 xMBPortSerialPutByte( ( CHAR ) ucByte ); in xMBASCIITransmitFSM() 357 xMBPortSerialPutByte( ( CHAR )ucByte ); in xMBASCIITransmitFSM() 373 xMBPortSerialPutByte( ( CHAR )ucMBLFCharacter ); in xMBASCIITransmitFSM() 469 ucLRC = ( UCHAR ) ( -( ( CHAR ) ucLRC ) ); in prvucMBLRC()
|
D | mbascii_m.c | 230 xNeedPoll = xMBMasterPortSerialGetByte( ( CHAR * ) & ucByte ); in xMBMasterASCIIReceiveFSM() 378 xMBMasterPortSerialPutByte( ( CHAR )ucByte ); in xMBMasterASCIITransmitFSM() 394 xMBMasterPortSerialPutByte( ( CHAR ) ucByte ); in xMBMasterASCIITransmitFSM() 400 xMBMasterPortSerialPutByte( ( CHAR )ucByte ); in xMBMasterASCIITransmitFSM() 416 xMBMasterPortSerialPutByte( ( CHAR )ucMBLFCharacter ); in xMBMasterASCIITransmitFSM() 569 ucLRC = ( UCHAR ) ( -( ( CHAR ) ucLRC ) ); in prvucMBLRC()
|
/hal_espressif-3.4.0/components/freemodbus/port/ |
D | port.h | 115 typedef char CHAR; typedef 161 void vMBPortLog( eMBPortLogLevel eLevel, const CHAR * szModule, 162 const CHAR * szFmt, ... ); 163 void prvvMBTCPLogFrame( const CHAR * pucMsg, UCHAR * pucFrame, USHORT usFrameLen );
|
D | portserial.c | 62 static const CHAR *TAG = "MB_SERIAL"; 274 BOOL xMBPortSerialPutByte(CHAR ucByte) in xMBPortSerialPutByte() 283 BOOL xMBPortSerialGetByte(CHAR* pucByte) in xMBPortSerialGetByte()
|
D | portserial_m.c | 57 static const CHAR *TAG = "MB_MASTER_SERIAL"; 270 BOOL xMBMasterPortSerialPutByte(CHAR ucByte) in xMBMasterPortSerialPutByte() 279 BOOL xMBMasterPortSerialGetByte(CHAR* pucByte) in xMBMasterPortSerialGetByte()
|
D | port.c | 79 prvvMBTCPLogFrame( const CHAR * pucMsg, UCHAR * pucFrame, USHORT usFrameLen ) in prvvMBTCPLogFrame() 85 static CHAR arcBuffer[MB_TCP_FRAME_LOG_BUFSIZE]; in prvvMBTCPLogFrame()
|
/hal_espressif-3.4.0/components/freemodbus/modbus/include/ |
D | mbport.h | 137 BOOL xMBPortSerialGetByte( CHAR * pucByte ); 139 BOOL xMBPortSerialPutByte( CHAR ucByte ); 151 BOOL xMBMasterPortSerialGetByte( CHAR * pucByte ); 153 BOOL xMBMasterPortSerialPutByte( CHAR ucByte );
|
/hal_espressif-3.4.0/components/freemodbus/tcp_slave/port/ |
D | port_tcp_slave.h | 83 CHAR* pcBindAddr; /*!< IP address to bind */ 102 void vMBTCPPortSlaveSetNetOpt(void* pvNetIf, eMBPortIpVer xIpVersion, eMBPortProto xProto, CHAR* pc…
|
D | port_tcp_slave.c | 170 void vMBTCPPortSlaveSetNetOpt(void* pvNetIf, eMBPortIpVer xIpVersion, eMBPortProto xProto, CHAR* pc… in vMBTCPPortSlaveSetNetOpt() 186 CHAR cAddrStr[128]; in xMBTCPPortAcceptConnection() 188 CHAR* pcStr = NULL; in xMBTCPPortAcceptConnection() 324 vMBTCPPortBindAddr(const CHAR* pcBindIp) in vMBTCPPortBindAddr() 331 CHAR* pcStr = NULL; in vMBTCPPortBindAddr() 400 pcStr = (pxCurAddr->ai_canonname == NULL) ? (CHAR*)"\0" : pxCurAddr->ai_canonname; in vMBTCPPortBindAddr() 430 CHAR* pcClientIp = NULL; in vMBTCPPortServerTask()
|
/hal_espressif-3.4.0/components/freemodbus/modbus/rtu/ |
D | mbrtu.c | 229 xStatus = xMBPortSerialGetByte( ( CHAR * ) & ucByte ); in xMBRTUReceiveFSM() 301 xMBPortSerialPutByte( ( CHAR )*pucSndBufferCur ); in xMBRTUTransmitFSM()
|
D | mbrtu_m.c | 238 xStatus = xMBMasterPortSerialGetByte( ( CHAR * ) & ucByte ); in xMBMasterRTUReceiveFSM() 321 xMBMasterPortSerialPutByte( ( CHAR )*pucMasterSndBufferCur ); in xMBMasterRTUTransmitFSM()
|
/hal_espressif-3.4.0/components/freemodbus/tcp_master/port/ |
D | port_tcp_master.c | 447 static BOOL xMBTCPPortMasterCheckHost(const CHAR* pcHostStr, ip_addr_t* pxHostAddr) in xMBTCPPortMasterCheckHost() 450 CHAR cStr[45]; in xMBTCPPortMasterCheckHost() 451 CHAR* pcStr = &cStr[0]; in xMBTCPPortMasterCheckHost() 489 BOOL xMBTCPPortMasterAddSlaveIp(const USHORT usIndex, const CHAR* pcIpStr, UCHAR ucSlaveAddress) in xMBTCPPortMasterAddSlaveIp() 515 CHAR cStr[128]; in xMBTCPPortMasterConnect() 516 CHAR* pcStr = NULL; in xMBTCPPortMasterConnect() 721 CHAR ucDot = '.'; in vMBTCPPortMasterTask()
|
D | port_tcp_master.h | 111 BOOL xMBTCPPortMasterAddSlaveIp(const USHORT usIndex, const CHAR* pcIpStr, UCHAR ucSlaveAddress);
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32s3/rom/ |
D | tjpgd.h | 25 typedef char CHAR; typedef
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32/rom/ |
D | tjpgd.h | 25 typedef char CHAR; typedef
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32c3/rom/ |
D | tjpgd.h | 25 typedef char CHAR; typedef
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32h2/rom/ |
D | tjpgd.h | 25 typedef char CHAR; typedef
|
/hal_espressif-3.4.0/components/freemodbus/common/ |
D | esp_modbus_slave.c | 396 CHAR* coils_data_buf = (CHAR*)(reg_coils_buf + (reg_index >> 3)); in mbc_reg_coils_slave_cb()
|
/hal_espressif-3.4.0/examples/bluetooth/bluedroid/ble/gattc_multi_connect/tutorial/ |
D | Gatt_Client_Multi_Connection_Example_Walkthrough.md | 207 …ESP_LOGI(GATTC_TAG, "GET CHAR: conn_id = %x, status %d", p_data->get_char.conn_id, p_data->get_cha… 208 …ESP_LOGI(GATTC_TAG, "GET CHAR: srvc_id = %04x, char_id = %04x", p_data->get_char.srvc_id.id.uuid.u…
|