TT12-MCU/applications/ttTR/ttTR.h
CSSC-WORK\murmur 4776a3f086 整理文件
2023-08-31 17:14:48 +08:00

29 lines
637 B
C

/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2023-05-30 murmur the first version
*/
#ifndef APPLICATIONS_TTTR_H_
#define APPLICATIONS_TTTR_H_
//struct rt_messagequeue TTrx_mq;
typedef struct
{
rt_uint8_t data[200];
int size;
}TTRx_MSG;
int tcpInit(void);
int tcpRec(unsigned char *recv_data);
int sendMsg(const rt_uint8_t *msg, size_t len);
int sendMsgs(const rt_uint8_t (*msg)[200], char *s, size_t row);
void tcpClose(void);
int isTCPok(void);
void tcpRecMQ(void);
#endif /* APPLICATIONS_TTTR_H_ */