Skip to content

Commit

Permalink
Add ESP-32 driver
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Snow authored and Chris Snow committed Sep 20, 2024
1 parent 975e6b2 commit dac35fd
Show file tree
Hide file tree
Showing 13 changed files with 4,616 additions and 0 deletions.
5 changes: 5 additions & 0 deletions connectivity/drivers/wifi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,8 @@ if("COMPONENT_ESPRESSIF_ESP8266=1" IN_LIST MBED_TARGET_DEFINITIONS)
add_subdirectory(COMPONENT_ESPRESSIF_ESP8266)
endif()

if("COMPONENT_ESPRESSIF_ESP32=1" IN_LIST MBED_TARGET_DEFINITIONS)
create_mbed_wifi_target()
add_subdirectory(COMPONENT_ESPRESSIF_ESP32)
endif()

16 changes: 16 additions & 0 deletions connectivity/drivers/wifi/COMPONENT_ESPRESSIF_ESP32/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

target_sources(mbed-wifi
PRIVATE
./ESP32Interface.cpp
./ESP32InterfaceAP.cpp
./ESP32Stack.cpp
./ESP32/ESP32.cpp
)

target_include_directories(mbed-wifi
PUBLIC
./
./ESP32/
)
Loading

0 comments on commit dac35fd

Please sign in to comment.