forked from ARMmbed/mbed-os
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ESP-32 driver * Resolve header issues * Allow smaller blocks * reset timeout can take 2s * Documentation & style fixes * quick JSON update * Augh fix style again * Astyle you are trippin --------- Co-authored-by: Chris Snow <[email protected]>
- Loading branch information
1 parent
42d24a8
commit 6368e52
Showing
19 changed files
with
4,218 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
# Build the HTML documentation | ||
- name: Doxygen Action | ||
uses: mattnotmitt/[email protected].5 | ||
uses: mattnotmitt/[email protected].8 | ||
with: | ||
doxyfile-path: ./doxyfile_options | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
connectivity/drivers/wifi/COMPONENT_ESPRESSIF_ESP32/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# 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/ | ||
) | ||
|
||
# Link override object file coming from static library anyway | ||
# | ||
# NOTE: This linker option is to pretend undefined symbol and won't cause | ||
# undefined symbol error even though the override object file actually | ||
# doesn't provide such symbol definition. | ||
if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM") | ||
target_link_options(mbed-wifi | ||
INTERFACE | ||
LINKER:--undefined=LINK_ESP32INTERFACE_CPP | ||
) | ||
endif() |
Oops, something went wrong.