26 lines
420 B
C
26 lines
420 B
C
#ifndef WIFI_H
|
|
#define WIFI_H
|
|
|
|
#include <string.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include "pico/stdlib.h"
|
|
#include "pico/cyw43_arch.h"
|
|
|
|
#include "lwip/pbuf.h"
|
|
#include "lwip/tcp.h"
|
|
#include "lwip/dns.h"
|
|
|
|
#define TEST_TCP_SERVER_IP "192.168.31.17"
|
|
#define TCP_PORT 91
|
|
|
|
#define BUF_SIZE 2048
|
|
#define TEST_ITERATIONS 10
|
|
#define POLL_TIME_S 5
|
|
#define DEBUG_printf printf
|
|
|
|
void run_tcp_client_test(char *s);
|
|
|
|
#endif
|