Transfer data
This commit is contained in:
parent
cac6d98908
commit
c43dd6121a
27 changed files with 3237 additions and 0 deletions
16
esp32example/include/lwip_hooks.h
Normal file
16
esp32example/include/lwip_hooks.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef _LWIP_HOOKS_H_
|
||||
#define _LWIP_HOOKS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
int lwip_hook_ip4_input(struct pbuf *pbuf, struct netif *input_netif);
|
||||
#define LWIP_HOOK_IP4_INPUT lwip_hook_ip4_input
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _LWIP_HOOKS_H_ */
|
9
esp32example/include/theSecrets-example.h
Normal file
9
esp32example/include/theSecrets-example.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#ifndef _THE_SECRETS_H_
|
||||
#define _THE_SECRETS_H_
|
||||
|
||||
const char *ssid = "Wifi";
|
||||
const char *psk = "password";
|
||||
const char *username = "username";
|
||||
const char *password = "password";
|
||||
|
||||
#endif
|
Reference in a new issue