Skip to content

Commit 511071e

Browse files
committed
Rename feather across folders and config, fix makefile def issue
1 parent 84c0d6c commit 511071e

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
@@ -95,7 +95,6 @@ jobs:
9595
- "electronut_labs_blip"
9696
- "electronut_labs_papyr"
9797
- "escornabot_makech"
98-
- "feather_f405"
9998
- "feather_m0_adalogger"
10099
- "feather_m0_basic"
101100
- "feather_m0_express"
@@ -106,6 +105,7 @@ jobs:
106105
- "feather_m4_express"
107106
- "feather_nrf52840_express"
108107
- "feather_radiofruit_zigbee"
108+
- "feather_stm32f405_express"
109109
- "gemma_m0"
110110
- "grandcentral_m4_express"
111111
- "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)