mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
488 B
16 lines
488 B
#ifndef __TCP_CLIENT_H__
|
|
#define __TCP_CLIENT_H__
|
|
|
|
// max number of channels the client can open
|
|
#define MAX_TCP_CHAN 8
|
|
|
|
// Parse and perform the command, cmdBuf must be null-terminated
|
|
bool tcpClientCommand(uint8_t chan, char cmd, char *cmdBuf);
|
|
|
|
// Append a character to the specified channel
|
|
void tcpClientSendChar(uint8_t chan, char c);
|
|
|
|
// Enqueue the buffered characters for transmission on the specified channel
|
|
void tcpClientSendPush(uint8_t chan);
|
|
|
|
#endif /* __TCP_CLIENT_H__ */
|
|
|