Home
last modified time | relevance | path

Searched refs:xConnectQueue (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-3.4.0/components/freemodbus/tcp_master/port/
Dport_tcp_master.c115 xMbPortConfig.xConnectQueue = NULL; in xMBMasterTCPPortInit()
121 xMbPortConfig.xConnectQueue = xQueueCreate(2, sizeof(MbSlaveAddrInfo_t)); in xMBMasterTCPPortInit()
122 if (xMbPortConfig.xConnectQueue == 0) in xMBMasterTCPPortInit()
493 MB_PORT_CHECK(xMbPortConfig.xConnectQueue != NULL, FALSE, "Wrong slave IP address to add."); in xMBTCPPortMasterAddSlaveIp()
501 BaseType_t xStatus = xQueueSend(xMbPortConfig.xConnectQueue, (void*)&xSlaveAddrInfo, 100); in xMBTCPPortMasterAddSlaveIp()
673 …BaseType_t xStatus = xQueueReceive(xMbPortConfig.xConnectQueue, (void*)&xSlaveAddrInfo, pdMS_TO_TI… in vMBTCPPortMasterTask()
925 vQueueDelete(xMbPortConfig.xConnectQueue); in vMBMasterTCPPortClose()
Dport_tcp_master.h82 QueueHandle_t xConnectQueue; /*!< Master connection queue */ member