Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
3b9a42e2
Commit
3b9a42e2
authored
Oct 01, 2015
by
Johny Mattsson
Browse files
Updated #includes to work on new SDK.
Both "c_types.h" and "lwip/ip_addr.h" don't get included indirectly anymore.
parent
cc220d92
Changes
5
Hide whitespace changes
Inline
Side-by-side
app/coap/coap_io.h
View file @
3b9a42e2
...
@@ -5,6 +5,8 @@
...
@@ -5,6 +5,8 @@
extern
"C"
{
extern
"C"
{
#endif
#endif
#include "c_types.h"
#include "lwip/ip_addr.h"
#include "espconn.h"
#include "espconn.h"
#include "pdu.h"
#include "pdu.h"
#include "hash.h"
#include "hash.h"
...
...
app/include/rom.h
View file @
3b9a42e2
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
#ifndef _ROM_H_
#ifndef _ROM_H_
#define _ROM_H_
#define _ROM_H_
#include "c_types.h"
// SHA1 is assumed to match the netbsd sha1.h headers
// SHA1 is assumed to match the netbsd sha1.h headers
#define SHA1_DIGEST_LENGTH 20
#define SHA1_DIGEST_LENGTH 20
#define SHA1_DIGEST_STRING_LENGTH 41
#define SHA1_DIGEST_STRING_LENGTH 41
...
...
app/modules/coap.c
View file @
3b9a42e2
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
#include "c_types.h"
#include "c_types.h"
#include "mem.h"
#include "mem.h"
#include "lwip/ip_addr.h"
#include "espconn.h"
#include "espconn.h"
#include "driver/uart.h"
#include "driver/uart.h"
...
...
app/modules/mqtt.c
View file @
3b9a42e2
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
#include "c_types.h"
#include "c_types.h"
#include "mem.h"
#include "mem.h"
#include "lwip/ip_addr.h"
#include "espconn.h"
#include "espconn.h"
#include "mqtt_msg.h"
#include "mqtt_msg.h"
...
...
app/modules/net.c
View file @
3b9a42e2
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
#include "c_types.h"
#include "c_types.h"
#include "mem.h"
#include "mem.h"
#include "lwip/ip_addr.h"
#include "espconn.h"
#include "espconn.h"
#include "lwip/dns.h"
#include "lwip/dns.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment