-
-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for H503RB (generic and Nucleo)
- Loading branch information
1 parent
54c6736
commit 7572a4e
Showing
2 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"build": { | ||
"core": "stm32", | ||
"cpu": "cortex-m7", | ||
"extra_flags": "-DSTM32H7 -DSTM32H5xx -DSTM32H503xx", | ||
"f_cpu": "250000000L", | ||
"mcu": "stm32h503rbt6", | ||
"product_line": "STM32H503xx", | ||
"variant": "STM32H503RBT" | ||
}, | ||
"connectivity": [ | ||
"usb", | ||
"can" | ||
], | ||
"debug": { | ||
"default_tools": [ | ||
"stlink" | ||
], | ||
"jlink_device": "STM32H503RB", | ||
"onboard_tools": [ | ||
"stlink" | ||
], | ||
"openocd_target": "stm32h5x", | ||
"svd_path": "STM32H503.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"stm32cube" | ||
], | ||
"name": "STM32H503RB (32k RAM. 128k Flash)", | ||
"upload": { | ||
"maximum_ram_size": 32768, | ||
"maximum_size": 131072, | ||
"protocol": "stlink", | ||
"protocols": [ | ||
"blackmagic", | ||
"cmsis-dap", | ||
"jlink", | ||
"stlink" | ||
] | ||
}, | ||
"url": "https://www.st.com/en/evaluation-tools/nucleo-h503rb.html", | ||
"vendor": "ST" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"build": { | ||
"core": "stm32", | ||
"cpu": "cortex-m7", | ||
"extra_flags": "-DSTM32H7 -DSTM32H5xx -DSTM32H503xx", | ||
"f_cpu": "250000000L", | ||
"mcu": "stm32h503rbt6", | ||
"product_line": "STM32H503xx", | ||
"variant": "STM32H503RBT" | ||
}, | ||
"connectivity": [ | ||
"usb", | ||
"can" | ||
], | ||
"debug": { | ||
"default_tools": [ | ||
"stlink" | ||
], | ||
"jlink_device": "STM32H503RB", | ||
"onboard_tools": [ | ||
"stlink" | ||
], | ||
"openocd_target": "stm32h5x", | ||
"svd_path": "STM32H503.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"stm32cube" | ||
], | ||
"name": "ST Nucleo H503RB", | ||
"upload": { | ||
"maximum_ram_size": 32768, | ||
"maximum_size": 131072, | ||
"protocol": "stlink", | ||
"protocols": [ | ||
"blackmagic", | ||
"cmsis-dap", | ||
"jlink", | ||
"stlink" | ||
] | ||
}, | ||
"url": "https://www.st.com/en/evaluation-tools/nucleo-h503rb.html", | ||
"vendor": "ST" | ||
} |