Skip to content

Commit 3683ee3

Browse files
authored
Merge pull request #2243 from hierophect/f405-rename-and-fixes
STM32: rename feather_stm32f405_express, fix makefile defs issue
2 parents 51c7bb7 + 511071e commit 3683ee3

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ jobs:
9292
- "electronut_labs_blip"
9393
- "electronut_labs_papyr"
9494
- "escornabot_makech"
95-
- "feather_f405"
9695
- "feather_m0_adalogger"
9796
- "feather_m0_basic"
9897
- "feather_m0_express"
@@ -103,6 +102,7 @@ jobs:
103102
- "feather_m4_express"
104103
- "feather_nrf52840_express"
105104
- "feather_radiofruit_zigbee"
105+
- "feather_stm32f405_express"
106106
- "gemma_m0"
107107
- "grandcentral_m4_express"
108108
- "hallowing_m0_express"

ports/stm32f4/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ LIBS += -lm
121121
endif
122122

123123
# TinyUSB defines
124-
CFLAGS += -DHSE_VALUE=8000000 -DCFG_TUSB_MCU=OPT_MCU_STM32F4 -DCFG_TUD_CDC_RX_BUFSIZE=1024 -DCFG_TUD_CDC_TX_BUFSIZE=1024 -DCFG_TUD_MSC_BUFSIZE=4096 -DCFG_TUD_MIDI_RX_BUFSIZE=128 -DCFG_TUD_MIDI_TX_BUFSIZE=128
124+
CFLAGS += -DCFG_TUSB_MCU=OPT_MCU_STM32F4 -DCFG_TUD_CDC_RX_BUFSIZE=1024 -DCFG_TUD_CDC_TX_BUFSIZE=1024 -DCFG_TUD_MSC_BUFSIZE=4096 -DCFG_TUD_MIDI_RX_BUFSIZE=128 -DCFG_TUD_MIDI_TX_BUFSIZE=128
125125

126126

127127
######################################

ports/stm32f4/boards/feather_f405/mpconfigboard.h renamed to ports/stm32f4/boards/feather_stm32f405_express/mpconfigboard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
//Micropython setup
2929

30-
#define MICROPY_HW_BOARD_NAME "Feather F405"
30+
#define MICROPY_HW_BOARD_NAME "Feather STM32F405 Express"
3131
#define MICROPY_HW_MCU_NAME "STM32F405RG"
3232

3333
#define FLASH_SIZE (0x100000)

ports/stm32f4/boards/feather_f405/mpconfigboard.mk renamed to ports/stm32f4/boards/feather_stm32f405_express/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
USB_VID = 0x239A
22
USB_PID = 0x805A
3-
USB_PRODUCT = "Feather F405"
3+
USB_PRODUCT = "Feather STM32F405 Express"
44
USB_MANUFACTURER = "Adafruit Industries LLC"
55
USB_DEVICES = "CDC,MSC"
66

0 commit comments

Comments
 (0)