IDF master 3e370c4296

* Fix build compilation due to changes in the HW_TIMER's structs

* Fix compilation warnings and errors with USB

* Update USBCDC.cpp

* Update CMakeLists.txt

* Update HWCDC.cpp
This commit is contained in:
Me No Dev
2021-10-01 17:52:29 +03:00
committed by GitHub
parent 381e88ec75
commit 00214d5c2a
1475 changed files with 88153 additions and 49503 deletions

View File

@ -17,6 +17,10 @@
#include "sdkconfig.h"
#include "lwip/ip_addr.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct dhcps_state{
s16_t state;
} dhcps_state;
@ -91,4 +95,8 @@ void dhcps_dns_setserver(const ip_addr_t *dnsserver);
ip4_addr_t dhcps_dns_getserver(void);
void dhcps_set_new_lease_cb(dhcps_cb_t cb);
#ifdef __cplusplus
}
#endif
#endif /* __DHCPS_H__ */

View File

@ -13,6 +13,9 @@
// limitations under the License.
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/** DHCP Options
This macros are not part of the public dhcpserver.h interface.
@ -132,3 +135,7 @@ typedef enum
DOMAIN_SEARCH = 119,
CLASSLESS_ROUTE = 121,
} dhcp_msg_option;
#ifdef __cplusplus
}
#endif