Danger-alarm/SOFTWARE/Source/WIFI.c

252 lines
8.1 KiB
C
Raw Normal View History

2024-11-10 21:36:07 +08:00
#include "WIFI.h"
#if 0
2024-11-12 10:36:32 +08:00
static void dump_bytes(const uint8_t *bptr, uint32_t len)
{
2024-11-10 21:36:07 +08:00
unsigned int i = 0;
printf("dump_bytes %d", len);
for (i = 0; i < len;) {
if ((i & 0x0f) == 0) {
printf("\n");
} else if ((i & 0x07) == 0) {
printf(" ");
}
printf("%02x ", bptr[i++]);
}
printf("\n");
}
2024-11-12 10:36:32 +08:00
#define DUMP_BYTES dump_bytes // 调试用的字节转储函数
2024-11-10 21:36:07 +08:00
#else
#define DUMP_BYTES(A,B)
#endif
typedef struct TCP_CLIENT_T_ {
2024-11-12 10:36:32 +08:00
struct tcp_pcb *tcp_pcb; // TCP控制块指针
ip_addr_t remote_addr; // 远程地址
uint8_t buffer[BUF_SIZE]; // 接收缓冲区
int buffer_len; // 缓冲区当前长度
int sent_len; // 已发送的数据长度
bool complete; // 是否完成测试
int run_count; // 运行次数
bool connected; // 是否已连接
2024-11-10 21:36:07 +08:00
} TCP_CLIENT_T;
2024-11-12 10:36:32 +08:00
static err_t tcp_client_close(void *arg)
{
TCP_CLIENT_T *state = (TCP_CLIENT_T *) arg;
2024-11-10 21:36:07 +08:00
err_t err = ERR_OK;
if (state->tcp_pcb != NULL) {
2024-11-12 10:36:32 +08:00
tcp_arg(state->tcp_pcb, NULL); // 清除回调参数
tcp_poll(state->tcp_pcb, NULL, 0); // 清除轮询回调
tcp_sent(state->tcp_pcb, NULL); // 清除发送回调
tcp_recv(state->tcp_pcb, NULL); // 清除接收回调
tcp_err(state->tcp_pcb, NULL); // 清除错误回调
err = tcp_close(state->tcp_pcb); // 关闭TCP连接
2024-11-10 21:36:07 +08:00
if (err != ERR_OK) {
2024-11-12 10:36:32 +08:00
DEBUG_printf("close failed %d, calling abort\n", err); // 如果关闭失败调用abort
2024-11-10 21:36:07 +08:00
tcp_abort(state->tcp_pcb);
err = ERR_ABRT;
}
state->tcp_pcb = NULL; // 清除TCP控制块指针
}
return err;
}
// 操作结果回调
2024-11-12 10:36:32 +08:00
static err_t tcp_result(void *arg, int status)
{
TCP_CLIENT_T *state = (TCP_CLIENT_T *) arg;
2024-11-10 21:36:07 +08:00
if (status == 0) {
2024-11-12 10:36:32 +08:00
DEBUG_printf("test success\n"); // 测试成功
2024-11-10 21:36:07 +08:00
} else {
2024-11-12 10:36:32 +08:00
DEBUG_printf("test failed %d\n", status); // 测试失败
2024-11-10 21:36:07 +08:00
}
2024-11-12 10:36:32 +08:00
state->complete = true; // 标记测试完成
return tcp_client_close(arg); // 关闭连接
2024-11-10 21:36:07 +08:00
}
// 轮询回调
2024-11-12 10:36:32 +08:00
static err_t tcp_client_poll(void *arg, struct tcp_pcb *tpcb)
{
2024-11-10 21:36:07 +08:00
DEBUG_printf("tcp_client_poll\n");
2024-11-12 10:36:32 +08:00
return tcp_result(arg, -1); // 无响应视为错误
2024-11-10 21:36:07 +08:00
}
// 错误处理回调
2024-11-12 10:36:32 +08:00
static void tcp_client_err(void *arg, err_t err)
{
2024-11-10 21:36:07 +08:00
if (err != ERR_ABRT) {
2024-11-12 10:36:32 +08:00
DEBUG_printf("tcp_client_err %d\n", err); // 打印错误信息
2024-11-10 21:36:07 +08:00
tcp_result(arg, err);
}
}
// 连接建立回调
2024-11-12 10:36:32 +08:00
static err_t tcp_client_connected(void *arg, struct tcp_pcb *tpcb, err_t err)
{
TCP_CLIENT_T *state = (TCP_CLIENT_T *) arg;
2024-11-10 21:36:07 +08:00
if (err != ERR_OK) {
2024-11-12 10:36:32 +08:00
printf("connect failed %d\n", err); // 连接失败
2024-11-10 21:36:07 +08:00
return tcp_result(arg, err);
}
2024-11-12 10:36:32 +08:00
state->connected = true; // 标记已连接
DEBUG_printf("连接成功,准备发送消息!!!\n"); // 连接成功,准备发送消息
2024-11-10 21:36:07 +08:00
// 发送字符串到服务器
err = tcp_write(tpcb, state->buffer, state->buffer_len, TCP_WRITE_FLAG_COPY);
if (err != ERR_OK) {
2024-11-12 10:36:32 +08:00
DEBUG_printf("发送失败: %d\n", err); // 发送失败
2024-11-10 21:36:07 +08:00
return tcp_result(arg, -1);
}
2024-11-12 10:36:32 +08:00
DEBUG_printf("发送数据: %s\n", state->buffer); // 打印发送的消息
2024-11-10 21:36:07 +08:00
memset(state->buffer, 0, state->buffer_len);
state->buffer_len = 0;
return ERR_OK;
}
2024-11-12 10:36:32 +08:00
err_t tcp_client_recv(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err)
{
TCP_CLIENT_T *state = (TCP_CLIENT_T *) arg;
2024-11-10 21:36:07 +08:00
if (!p) {
2024-11-12 10:36:32 +08:00
DEBUG_printf("接收数据失败p 为 NULL\n"); // 添加调试信息
2024-11-10 21:36:07 +08:00
return tcp_result(arg, -1);
}
// this method is callback from lwIP, so cyw43_arch_lwip_begin is not required, however you
// can use this method to cause an assertion in debug mode, if this method is called when
// cyw43_arch_lwip_begin IS needed
cyw43_arch_lwip_check();
if (p->tot_len > 0) {
DEBUG_printf("recv %d err %d\n", p->tot_len, err);
2024-11-12 10:36:32 +08:00
for (struct pbuf * q = p; q != NULL; q = q->next) {
2024-11-10 21:36:07 +08:00
DUMP_BYTES(q->payload, q->len);
}
// Receive the buffer
const uint16_t buffer_left = BUF_SIZE - state->buffer_len;
2024-11-12 10:36:32 +08:00
state->buffer_len += pbuf_copy_partial(p, state->buffer + state->buffer_len, p->tot_len > buffer_left ? buffer_left : p->tot_len, 0);
2024-11-10 21:36:07 +08:00
tcp_recved(tpcb, p->tot_len);
}
// 打印当前缓冲区内容
printf("接收数据: %s", state->buffer);
pbuf_free(p);
memset(state->buffer, 0, state->buffer_len);
state->buffer_len = 0;
return ERR_OK;
}
// 发送数据回调
2024-11-12 10:36:32 +08:00
static err_t tcp_client_sent(void *arg, struct tcp_pcb *tpcb, u16_t len)
{
TCP_CLIENT_T *state = (TCP_CLIENT_T *) arg;
DEBUG_printf("tcp_client_sent %u\n", len); // 打印发送的数据长度
state->sent_len += len; // 更新已发送的数据长度
2024-11-10 21:36:07 +08:00
if (state->sent_len >= BUF_SIZE) {
2024-11-12 10:36:32 +08:00
state->run_count++; // 增加运行次数
2024-11-10 21:36:07 +08:00
if (state->run_count >= TEST_ITERATIONS) {
2024-11-12 10:36:32 +08:00
tcp_result(arg, 0); // 达到迭代次数,测试成功
2024-11-10 21:36:07 +08:00
return ERR_OK;
}
// 准备接收新的数据缓冲区
state->buffer_len = 0;
state->sent_len = 0;
DEBUG_printf("Waiting for buffer from server\n");
}
return ERR_OK;
}
// 打开TCP连接
2024-11-12 10:36:32 +08:00
static bool tcp_client_open(void *arg)
{
TCP_CLIENT_T *state = (TCP_CLIENT_T *) arg;
2024-11-10 21:36:07 +08:00
DEBUG_printf("Connecting to %s port %u\n", ip4addr_ntoa(&state->remote_addr), TCP_PORT);
2024-11-12 10:36:32 +08:00
state->tcp_pcb = tcp_new_ip_type(IP_GET_TYPE(&state->remote_addr)); // 创建TCP控制块
2024-11-10 21:36:07 +08:00
if (!state->tcp_pcb) {
2024-11-12 10:36:32 +08:00
DEBUG_printf("failed to create pcb\n"); // 创建失败
2024-11-10 21:36:07 +08:00
return false;
}
2024-11-12 10:36:32 +08:00
tcp_arg(state->tcp_pcb, state); // 设置回调参数
tcp_poll(state->tcp_pcb, tcp_client_poll, POLL_TIME_S * 2); // 设置轮询回调
tcp_sent(state->tcp_pcb, tcp_client_sent); // 设置发送回调
tcp_recv(state->tcp_pcb, tcp_client_recv); // 设置接收回调
tcp_err(state->tcp_pcb, tcp_client_err); // 设置错误回调
2024-11-10 21:36:07 +08:00
2024-11-12 10:36:32 +08:00
//state->buffer_len = 0; // 初始化缓冲区长度
2024-11-10 21:36:07 +08:00
// 使用cyw43_arch_lwip_begin/end确保正确锁定
cyw43_arch_lwip_begin();
2024-11-12 10:36:32 +08:00
err_t err = tcp_connect(state->tcp_pcb, &state->remote_addr, TCP_PORT, tcp_client_connected); // 尝试连接
2024-11-10 21:36:07 +08:00
cyw43_arch_lwip_end();
return err == ERR_OK;
}
// 初始化TCP客户端
2024-11-12 10:36:32 +08:00
static TCP_CLIENT_T *tcp_client_init(void)
{
TCP_CLIENT_T *state = calloc(1, sizeof(TCP_CLIENT_T)); // 分配内存
2024-11-10 21:36:07 +08:00
if (!state) {
2024-11-12 10:36:32 +08:00
DEBUG_printf("failed to allocate state\n"); // 分配失败
2024-11-10 21:36:07 +08:00
return NULL;
}
2024-11-11 17:37:06 +08:00
// 如果 TEST_TCP_SERVER_IP 是 IP 地址,直接解析为 IP 地址
if (ip4addr_aton(TEST_TCP_SERVER_IP, &state->remote_addr) == 0) {
// 如果解析失败,尝试作为域名解析
DEBUG_printf("Failed to parse IP address, trying DNS resolution\n");
err_t err = dns_gethostbyname(TEST_TCP_SERVER_IP, &state->remote_addr, NULL, NULL);
if (err != ERR_OK) {
DEBUG_printf("DNS resolution failed\n");
free(state);
return NULL;
}
}
2024-11-10 21:36:07 +08:00
return state;
}
// 运行TCP客户端测试
2024-11-12 10:36:32 +08:00
void run_tcp_client_test(char *s)
{
TCP_CLIENT_T *state = tcp_client_init(); // 初始化客户端
2024-11-10 21:36:07 +08:00
if (!state) {
return;
}
2024-11-12 10:36:32 +08:00
if (!tcp_client_open(state)) { // 打开连接
2024-11-10 21:36:07 +08:00
tcp_result(state, -1); // 连接失败
return;
}
2024-11-12 10:36:32 +08:00
strcpy(state->buffer, s);
state->buffer_len = strlen(state->buffer);
while (!state->complete) { // 循环等待测试完成
2024-11-10 21:36:07 +08:00
#if PICO_CYW43_ARCH_POLL
// 如果使用pico_cyw43_arch_poll需要定期调用cyw43_arch_poll
cyw43_arch_poll();
// 可以选择休眠直到有工作需要做
cyw43_arch_wait_for_work_until(make_timeout_time_ms(1000));
#else
2024-11-12 10:36:32 +08:00
//cyw43_arch_poll();
2024-11-10 21:36:07 +08:00
// 可以选择休眠直到有工作需要做
2024-11-12 10:36:32 +08:00
//cyw43_arch_wait_for_work_until(make_timeout_time_ms(1000));
2024-11-10 21:36:07 +08:00
// 如果不使用pico_cyw43_arch_poll可以通过中断在后台处理
//sleep_ms(1000); // 示例中的阻塞操作
#endif
}
2024-11-12 10:36:32 +08:00
free(state); // 释放内存
}