move functions from test file to project
This commit is contained in:
2023-11-30 21:26:16 +01:00
parent 5bc3250c15
commit b7a924719e
3 changed files with 249 additions and 397 deletions

View File

@@ -13,12 +13,17 @@
#endif
#include "llfs.h"
#include "log.h"
#include <tcp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <ctype.h>
void tcp_cmd_init(void);
void tcp_cmd_init( void );
void tcp_cmd_write(struct tcp_pcb* pcb, const char* str);
void tcp_cmd_print_help(struct tcp_pcb* pcb);
err_t tcp_cmd_recv(void* arg, struct tcp_pcb* pcb, struct pbuf* p, err_t err);
#endif /* INC_TCP_CMD_H_ */