TT12-MCU/applications/ttTR/ttTR.h

29 lines
639 B
C
Raw Permalink Normal View History

/*
* 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[400];
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_ */