Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions bindgen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ CLANG_FLAGS="\
--target=$TARGET \
-x c"

for comp in $COMPS/*; do
dirs=$((cat $comp/component.mk && echo '$(info ${COMPONENT_ADD_INCLUDEDIRS})') | make -f - 2>/dev/null; true)
for dir in $dirs; do
CLANG_FLAGS="${CLANG_FLAGS} -I$comp/$dir"
done
done
for INC in $(ls -d "$COMPS"/**/*/include); do
CLANG_FLAGS="${CLANG_FLAGS} -I$INC"
done
Expand Down
2 changes: 1 addition & 1 deletion esp-idf
Submodule esp-idf updated 1270 files
46 changes: 46 additions & 0 deletions esp-idf-sys/src/bindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,50 @@
#include "driver/spi_slave.h"
#include "driver/timer.h"
#include "driver/uart.h"
#include <esp_assert.h>
#include <esp_attr.h>
#include <esp_brownout.h>
#include <esp_cache_err_int.h>
#include <esp_clk.h>
#include <esp_coexist_adapter.h>
#include <esp_coexist.h>
#include <esp_coexist_internal.h>
#include <esp_crosscore_int.h>
#include <esp_dbg_stubs.h>
#include <esp_deep_sleep.h>
#include <esp_deepsleep.h>
#include <esp_dport_access.h>
#include <esp_err.h>
#include <esp_event_legacy.h>
#include <esp_event_loop.h>
#include <esp_flash_data_types.h>
#include <esp_freertos_hooks.h>
#include <esp_gdbstub.h>
#include <esp_himem.h>
#include <esp_interface.h>
#include <esp_intr_alloc.h>
#include <esp_intr.h>
#include <esp_int_wdt.h>
#include <esp_ipc.h>
#include <esp_mesh.h>
#include <esp_mesh_internal.h>
#include <esp_now.h>
#include <esp_panic.h>
#include <esp_phy_init.h>
#include <esp_pm.h>
#include <esp_sleep.h>
#include <esp_smartconfig.h>
#include <esp_spiram.h>
#include <esp_ssc.h>
#include <esp_system.h>
#include <esp_task.h>
#include <esp_task_wdt.h>
#include <esp_timer.h>
#include <esp_types.h>
#include <esp_wifi_crypto_types.h>
#include <esp_wifi.h>
#include <esp_wifi_internal.h>
#include <esp_wifi_os_adapter.h>
#include <esp_wifi_types.h>
#include <esp_wpa2.h>
#include <esp_wps.h>
Loading