Skip to content

Commit a4cfd1c

Browse files
authored
Merge pull request hathach#1255 from hathach/add-s3-devkitm
Add s3 devkitm & devkitc
2 parents 693b688 + 311248c commit a4cfd1c

File tree

6 files changed

+101
-11
lines changed

6 files changed

+101
-11
lines changed

.github/workflows/build_esp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# ESP32-S2
1919
- 'espressif_saola_1'
2020
# ESP32-S3
21-
#- 'espressif_addax_1'
21+
#- 'espressif_s3_devkitm'
2222
# S3 compile error with "dangerous relocation: call8: call target out of range: memcpy"
2323

2424
steps:

hw/bsp/esp32s3/boards/espressif_addax_1/board.cmake

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
# Apply board specific content here
22
target_include_directories(${COMPONENT_LIB} PRIVATE .)
33

4-
idf_build_get_property(idf_target IDF_TARGET)
5-
6-
message(STATUS "Apply ${BOARD}(${idf_target}) specific options for component: ${COMPONENT_TARGET}")
7-
8-
if(NOT ${idf_target} STREQUAL "esp32s3")
9-
message(FATAL_ERROR "Incorrect target for board ${BOARD}: (${idf_target}), try to clean the build first." )
10-
endif()
11-
12-
set(IDF_TARGET "esp32s3" FORCE)
13-
144
target_compile_options(${COMPONENT_TARGET} PUBLIC
155
"-DCFG_TUSB_MCU=OPT_MCU_ESP32S3"
166
"-DCFG_TUSB_OS=OPT_OS_FREERTOS"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Apply board specific content here
2+
target_include_directories(${COMPONENT_LIB} PRIVATE .)
3+
4+
target_compile_options(${COMPONENT_TARGET} PUBLIC
5+
"-DCFG_TUSB_MCU=OPT_MCU_ESP32S3"
6+
"-DCFG_TUSB_OS=OPT_OS_FREERTOS"
7+
)
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* The MIT License (MIT)
3+
*
4+
* Copyright (c) 2020, Ha Thach (tinyusb.org)
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in
14+
* all copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
* THE SOFTWARE.
23+
*
24+
* This file is part of the TinyUSB stack.
25+
*/
26+
27+
#ifndef BOARD_H_
28+
#define BOARD_H_
29+
30+
#ifdef __cplusplus
31+
extern "C" {
32+
#endif
33+
34+
#define NEOPIXEL_PIN 48
35+
36+
#define BUTTON_PIN 0
37+
#define BUTTON_STATE_ACTIVE 0
38+
39+
#ifdef __cplusplus
40+
}
41+
#endif
42+
43+
#endif /* BOARD_H_ */
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Apply board specific content here
2+
target_include_directories(${COMPONENT_LIB} PRIVATE .)
3+
4+
target_compile_options(${COMPONENT_TARGET} PUBLIC
5+
"-DCFG_TUSB_MCU=OPT_MCU_ESP32S3"
6+
"-DCFG_TUSB_OS=OPT_OS_FREERTOS"
7+
)
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* The MIT License (MIT)
3+
*
4+
* Copyright (c) 2020, Ha Thach (tinyusb.org)
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in
14+
* all copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
* THE SOFTWARE.
23+
*
24+
* This file is part of the TinyUSB stack.
25+
*/
26+
27+
#ifndef BOARD_H_
28+
#define BOARD_H_
29+
30+
#ifdef __cplusplus
31+
extern "C" {
32+
#endif
33+
34+
#define NEOPIXEL_PIN 48
35+
36+
#define BUTTON_PIN 0
37+
#define BUTTON_STATE_ACTIVE 0
38+
39+
#ifdef __cplusplus
40+
}
41+
#endif
42+
43+
#endif /* BOARD_H_ */

0 commit comments

Comments
 (0)