-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add two Nucleo boards, GDB debugging and SVD files for all boards (#38)
* Added Nucleo-8S207K8 and Nucleo-8S208RB * Added SVD files This PR also sets stm8-objcopy as the main tool for HEX file generation as it's more convenient and flexible.
- Loading branch information
1 parent
5bb1a69
commit 3dd7514
Showing
18 changed files
with
50,573 additions
and
20 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
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,35 @@ | ||
{ | ||
"build": { | ||
"core": "sduino", | ||
"extra_flags": "-DSTM8S_NUCLEO_207K8 -DSTM8S207", | ||
"f_cpu": "16000000L", | ||
"cpu": "stm8", | ||
"mcu": "stm8s207k8t6" | ||
}, | ||
"debug": { | ||
"svd_path": "STM8S207K8.svd", | ||
"openocd_target": "stm8s", | ||
"default_tools": [ | ||
"stlink" | ||
], | ||
"onboard_tools": [ | ||
"stlink" | ||
] | ||
}, | ||
"frameworks": [ | ||
"spl" | ||
], | ||
"upload": { | ||
"maximum_ram_size": 6144, | ||
"maximum_size": 65536, | ||
"protocol": "stlinkv21", | ||
"protocols": [ | ||
"stlinkv21", | ||
"serial" | ||
], | ||
"stm8flash_target": "stm8s207k8" | ||
}, | ||
"name": "NUCLEO-8S207K8", | ||
"url": "https://www.st.com/en/evaluation-tools/nucleo-8s207k8.html", | ||
"vendor": "STMicroelectronics" | ||
} |
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,34 @@ | ||
{ | ||
"build": { | ||
"core": "sduino", | ||
"extra_flags": "-DSTM8S_NUCLEO_208RB -DSTM8S208", | ||
"f_cpu": "16000000L", | ||
"cpu": "stm8", | ||
"mcu": "stm8s208rbt6" | ||
}, | ||
"debug": { | ||
"svd_path": "STM8S208RB.svd", | ||
"openocd_target": "stm8s", | ||
"default_tools": [ | ||
"stlink" | ||
], | ||
"onboard_tools": [ | ||
"stlink" | ||
] | ||
}, | ||
"frameworks": [ | ||
"spl" | ||
], | ||
"upload": { | ||
"maximum_ram_size": 6144, | ||
"maximum_size": 131072, | ||
"protocol": "stlinkv21", | ||
"protocols": [ | ||
"stlinkv21", | ||
"serial" | ||
] | ||
}, | ||
"name": "NUCLEO-8S208RB", | ||
"url": "https://www.st.com/en/evaluation-tools/nucleo-8s208rb.html", | ||
"vendor": "STMicroelectronics" | ||
} |
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
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
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
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
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
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
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
Oops, something went wrong.