TT12-MCU/applications/ttTR.h
CSSC-WORK\murmur c83440e33a 基本完成TCP接收
基本完成参数更新功能,目前仅加载了部分参数
2023-06-20 18:09:07 +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_ */