ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts  1.0
ESP8266ILI9341DisplayProject
network.h
Go to the documentation of this file.
1 
26 #ifndef _NETWORK_H_
27 #define _NETWORK_H_
28 
29 extern int network_init;
30 
31 /* network.c */
32 MEMSPACE char *ipv4_2str(uint32_t ip);
34 void ntp_setup ( void );
35 MEMSPACE void my_receive ( void *arg , char *pdata , unsigned short len );
36 MEMSPACE void wifi_event_cb ( System_Event_t *event_p );
37 MEMSPACE void setup_networking ( void );
38 
39 #endif
unsigned int uint32_t
Definition: send.c:19
void ntp_setup(void)
Definition: user_main.c:176
MEMSPACE void my_receive(void *arg, char *pdata, unsigned short len)
MEMSPACE void wifi_event_cb(System_Event_t *event_p)
WIFI Event Callback.
Definition: network.c:80
MEMSPACE void setup_networking(void)
Code fragments if(!wifi_station_dhcpc_stop()) printf( "ERROR wifi_station_dhcpc_stop() \n ");...
Definition: network.c:165
MEMSPACE void poll_network_message(window *win)
MEMSPACE char * ipv4_2str(uint32_t ip)
Definition: network.c:66
#define MEMSPACE
Definition: cpu.h:25
Definition: ili9341.h:34
int network_init
Definition: network.c:50