|
ether2ser 0.1.0
Ethernet <-> synchronous V.24 bridge firmware for RP2040 + W5500
|
#include <stdint.h>#include <stdio.h>#include "pico/stdio.h"#include "pico/time.h"#include "socket.h"#include "w5500.h"#include "wizchip_conf.h"#include "wizchip_qspi_pio.h"#include "wizchip_spi.h"
Go to the source code of this file.
Macros | |
| #define | UDP_SOCK 0 |
| #define | UDP_PORT 6969 |
Functions | |
| static void | w5500_init_no_linkwait (void) |
| static void | configure_network (void) |
| static void | run_udp_echo_server (void) |
| int | main (void) |
Variables | |
| wiznet_spi_handle_t | spi_handle |
| #define UDP_PORT 6969 |
Definition at line 33 of file examples/w55_udp_echo/main.c.
| #define UDP_SOCK 0 |
Definition at line 32 of file examples/w55_udp_echo/main.c.
|
static |
Definition at line 55 of file examples/w55_udp_echo/main.c.
Referenced by main().

| int main | ( | void | ) |
Definition at line 127 of file examples/w55_udp_echo/main.c.
References configure_network(), and run_udp_echo_server().

|
static |
Definition at line 69 of file examples/w55_udp_echo/main.c.
References UDP_PORT, and UDP_SOCK.
Referenced by main().

|
static |
Definition at line 35 of file examples/w55_udp_echo/main.c.
|
extern |