uint8_t tcp_receive_id;
uint8_t tcp_receive_buf[100];
uint8_t tcp_receive_len;
怎么使用網(wǎng)口發(fā)送函數(shù)把數(shù)據(jù)發(fā)送出去?
? ? ? ? ? ? i = WCHNET_SocketSend(tcp_receive_id, tcp_receive_buf, &tcp_receive_len);? ?
? ? ? ? ? ? if (i == WCHNET_ERR_SUCCESS)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? WCHNET_SocketRecv(tcp_receive_id, NULL, &tcp_receive_len);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //Clear sent data
? ? ? ? ? ? }
老是警報(bào),程序應(yīng)該怎么寫?