Merge pull request #6577 from NathanY3G/uf2-family-id-for-stm32f405

stm: Make family IDs consistent with TinyUF2
This commit is contained in:
Scott Shawcroft 2022-07-12 13:38:40 -07:00 committed by GitHub
commit 9d5b04ebc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,9 @@ ifeq ($(MCU_VARIANT),$(filter $(MCU_VARIANT),STM32F405xx STM32F407xx))
CIRCUITPY_SDIOIO ?= 1
# Number of USB endpoint pairs.
USB_NUM_ENDPOINT_PAIRS = 4
endif
ifeq ($(MCU_VARIANT),STM32F407xx)
UF2_FAMILY_ID ?= 0x6d0922fa
endif