Skip to content

Commit 478cf3a

Browse files
committed
boards: StampPLC renamed as StamPLC.
Signed-off-by: lbuque <[email protected]>
1 parent 78fb276 commit 478cf3a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+115
-116
lines changed

docs/en/controllers/index.rst

Lines changed: 0 additions & 1 deletion

m5stack/CMakeListsDefault.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ if (
137137
OR BOARD_TYPE STREQUAL "fire"
138138
OR BOARD_TYPE STREQUAL "capsule"
139139
OR BOARD_TYPE STREQUAL "tough"
140-
OR BOARD_TYPE STREQUAL "stampplc"
140+
OR BOARD_TYPE STREQUAL "stamplc"
141141
)
142142
LIST(APPEND MICROPY_SOURCE_PORT ${PROJECT_DIR}/machine_hw_spi.c)
143143
LIST(APPEND MICROPY_SOURCE_PORT ${PROJECT_DIR}/machine_sdcard.c)

m5stack/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ boards := \
4040
M5STACK_AtomU:atomu \
4141
M5STACK_Atom_Echo:atomecho \
4242
M5STACK_AtomS3R:atoms3r \
43-
M5STACK_StampPLC:stampplc
43+
M5STACK_StamPLC:stamplc
4444

4545
define find_board
4646
$(if $(filter $(1):%,$(boards)),$(word 2,$(subst :, ,$(filter $(1):%,$(boards)))),none)
@@ -77,7 +77,7 @@ BOARD_TYPE_DEF := \
7777
atomu \
7878
atomecho \
7979
atoms3r \
80-
stampplc
80+
stamplc
8181

8282
# Select the board type to build, default is None
8383
# This value affects which folder in the "./fs/system/" directory is pack into "fs-system.bin"
File renamed without changes.

m5stack/boards/M5STACK_StampPLC/manifest.py renamed to m5stack/boards/M5STACK_StamPLC/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
include("$(MPY_DIR)/../m5stack/modules/startup/manifest_stampplc.py")
5+
include("$(MPY_DIR)/../m5stack/modules/startup/manifest_stamplc.py")

m5stack/boards/M5STACK_StampPLC/mpconfigboard.cmake renamed to m5stack/boards/M5STACK_StamPLC/mpconfigboard.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
set(IDF_TARGET esp32s3)
66

7-
# stampplc https://github.com/m5stack/m5stack-board-id/blob/main/board.csv#L29
7+
# stamplc https://github.com/m5stack/m5stack-board-id/blob/main/board.csv#L29
88
set(BOARD_ID 21)
99

1010
set(SDKCONFIG_DEFAULTS
@@ -17,7 +17,7 @@ set(SDKCONFIG_DEFAULTS
1717
./boards/sdkconfig.usb_cdc
1818
./boards/sdkconfig.flash_8mb
1919
./boards/sdkconfig.freertos
20-
./boards/M5STACK_StampPLC/sdkconfig.board
20+
./boards/M5STACK_StamPLC/sdkconfig.board
2121
)
2222

2323
# If not enable LVGL, ignore this...

m5stack/boards/M5STACK_StampPLC/mpconfigboard.h renamed to m5stack/boards/M5STACK_StamPLC/mpconfigboard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: MIT
55
*/
66

7-
#define MICROPY_HW_BOARD_NAME "M5STACK StampPLC"
7+
#define MICROPY_HW_BOARD_NAME "M5STACK StamPLC"
88
#define MICROPY_HW_MCU_NAME "ESP32-S3-FN8"
99

1010
#define MICROPY_PY_MACHINE_DAC (0)
@@ -15,7 +15,7 @@
1515
#define MICROPY_HW_I2C0_SCL (9)
1616
#define MICROPY_HW_I2C0_SDA (8)
1717

18-
#define MICROPY_HW_USB_CDC_INTERFACE_STRING "M5Stack StampPLC(UiFlow2)"
18+
#define MICROPY_HW_USB_CDC_INTERFACE_STRING "M5Stack StamPLC(UiFlow2)"
1919

2020
// If not enable LVGL, ignore this...
2121
#include "./../mpconfiglvgl.h"

m5stack/boards/M5STACK_StampPLC/sdkconfig.board renamed to m5stack/boards/M5STACK_StamPLC/sdkconfig.board

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ CONFIG_SPIRAM_MEMTEST=
1313
# CONFIG_FREERTOS_UNICORE=y
1414

1515
# M5STACK UiFlow USB description
16-
CONFIG_TINYUSB_DESC_CDC_STRING="M5Stack StampPLC(UiFlow2)"
16+
CONFIG_TINYUSB_DESC_CDC_STRING="M5Stack StamPLC(UiFlow2)"
1717

1818
# SSL
1919
CONFIG_MBEDTLS_AES_USE_INTERRUPT=n

m5stack/cmodules/m5unified/m5unified.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ static const mp_rom_map_elem_t m5_board_member_table[] = {
2828
{ MP_ROM_QSTR(MP_QSTR_M5AirQ), MP_ROM_INT(15) },
2929
{ MP_ROM_QSTR(MP_QSTR_M5AtomS3R), MP_ROM_INT(18) },
3030
{ MP_ROM_QSTR(MP_QSTR_M5PaperS3), MP_ROM_INT(19) },
31-
{ MP_ROM_QSTR(MP_QSTR_M5StampPLC), MP_ROM_INT(21) },
31+
{ MP_ROM_QSTR(MP_QSTR_M5StamPLC), MP_ROM_INT(21) },
3232
// non display boards
3333
{ MP_ROM_QSTR(MP_QSTR_M5Atom), MP_ROM_INT(128) },
3434
{ MP_ROM_QSTR(MP_QSTR_M5AtomPsram), MP_ROM_INT(129) },
File renamed without changes.

0 commit comments

Comments
 (0)