Skip to content

Commit

Permalink
Merge pull request #791 from flit/feature/st_binaries
Browse files Browse the repository at this point in the history
Add test binaries for several ST Nucleo boards
  • Loading branch information
flit authored Dec 24, 2019
2 parents 4077763 + 8d1f027 commit e3d468d
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
Binary file added binaries/NUCLEO_F072RB.bin
Binary file not shown.
Binary file added binaries/NUCLEO_F207ZG.bin
Binary file not shown.
Binary file added binaries/NUCLEO_F334R8.bin
Binary file not shown.
Binary file added binaries/NUCLEO_F411RE.bin
Binary file not shown.
Binary file added binaries/NUCLEO_F746ZG.bin
Binary file not shown.
Binary file added binaries/NUCLEO_L053R8.bin
Binary file not shown.
Binary file added binaries/NUCLEO_L152RE.bin
Binary file not shown.
Binary file added binaries/NUCLEO_L476RG.bin
Binary file not shown.
Binary file added binaries/ST-Nucleo-F103RB.bin
Binary file not shown.
18 changes: 9 additions & 9 deletions pyocd/board/board_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ def __init__(self, name, target, binary):
"0462": BoardInfo( "MTB USI WM-BN-BM-22", "stm32f412xg", "mtb_usi_wm-bn-bm-22.bin",),
"0602": BoardInfo( "EV_COG_AD3029LZ", "aducm3029", None ),
"0603": BoardInfo( "EV_COG_AD4050LZ", "aducm4050", None ),
"0700": BoardInfo( "NUCLEO-F103RB", "stm32f103rb", None, ),
"0700": BoardInfo( "NUCLEO-F103RB", "stm32f103rb", "ST-Nucleo-F103RB.bin", ),
"0705": BoardInfo( "NUCLEO-F302R8", "stm32f302r8", None, ),
"0710": BoardInfo( "NUCLEO-L152RE", "stm32l152re", None, ),
"0715": BoardInfo( "NUCLEO-L053R8", "stm32l053r8", None, ),
"0710": BoardInfo( "NUCLEO-L152RE", "stm32l152re", "NUCLEO_L152RE.bin", ),
"0715": BoardInfo( "NUCLEO-L053R8", "stm32l053r8", "NUCLEO_L053R8.bin", ),
"0720": BoardInfo( "NUCLEO-F401RE", "stm32f401re", None, ),
"0725": BoardInfo( "NUCLEO-F030R8", "stm32f030r8", None, ),
"0730": BoardInfo( "NUCLEO-F072RB", "stm32f072rb", None, ),
"0735": BoardInfo( "NUCLEO-F334R8", "stm32f334r8", None, ),
"0740": BoardInfo( "NUCLEO-F411RE", "stm32f411re", None, ),
"0730": BoardInfo( "NUCLEO-F072RB", "stm32f072rb", "NUCLEO_F072RB.bin", ),
"0735": BoardInfo( "NUCLEO-F334R8", "stm32f334r8", "NUCLEO_F334R8.bin", ),
"0740": BoardInfo( "NUCLEO-F411RE", "stm32f411re", "NUCLEO_F411RE.bin", ),
"0742": BoardInfo( "NUCLEO-F413ZH", "stm32f413zh", None, ),
"0743": BoardInfo( "DISCO-F413ZH", "stm32f413zh", None, ),
"0744": BoardInfo( "NUCLEO-F410RB", "stm32f410rb", None, ),
Expand All @@ -115,7 +115,7 @@ def __init__(self, name, target, binary):
"0755": BoardInfo( "NUCLEO-F070RB", "stm32f070rb", None, ),
"0760": BoardInfo( "NUCLEO-L073RZ", "stm32l073rz", None, ),
"0764": BoardInfo( "DISCO-L475VG-IOT01A", "stm32l475xg", "stm32l475vg_iot01a.bin",),
"0765": BoardInfo( "NUCLEO-L476RG", "stm32l476rg", None, ),
"0765": BoardInfo( "NUCLEO-L476RG", "stm32l476rg", "NUCLEO_L476RG.bin", ),
"0770": BoardInfo( "NUCLEO-L432KC", "stm32l432kc", None, ),
"0774": BoardInfo( "DISCO-L4R9I", "stm32ler9i", None, ),
"0775": BoardInfo( "NUCLEO-F303K8", "stm32f303k8", None, ),
Expand All @@ -139,7 +139,7 @@ def __init__(self, name, target, binary):
"0813": BoardInfo( "NUCLEO-H743ZI", "stm32h743zitx", None, ),
"0814": BoardInfo( "DISCO-H747I", "stm32h747xihx", None, ),
"0815": BoardInfo( "DISCO-F746NG", "stm32f746ng", None, ),
"0816": BoardInfo( "NUCLEO-F746ZG", "stm32f746zg", None, ),
"0816": BoardInfo( "NUCLEO-F746ZG", "stm32f746zg", "NUCLEO_F746ZG.bin", ),
"0817": BoardInfo( "DISCO-F769NI", "stm32f769ni", None, ),
"0818": BoardInfo( "NUCLEO-F767ZI", "stm32f767zi", None, ),
"0820": BoardInfo( "DISCO-L476VG", "stm32l476vg", None, ),
Expand All @@ -153,7 +153,7 @@ def __init__(self, name, target, binary):
"0829": BoardInfo( "NUCLEO-L452RE-P", "stm32l452re", None, ),
"0830": BoardInfo( "DISCO-F407VG", "stm32f407vg", None, ),
"0833": BoardInfo( "DISCO-L072CZ-LRWAN1", "stm32l072cz", None, ),
"0835": BoardInfo( "NUCLEO-F207ZG", "stm32f207zg", None, ),
"0835": BoardInfo( "NUCLEO-F207ZG", "stm32f207zg", "NUCLEO_F207ZG.bin", ),
"0836": BoardInfo( "NUCLEO-H743ZI2", "stm32h743zitx", None, ),
"0839": BoardInfo( "NUCLEO-WB55RG", "stm32wb55rgvx", None, ),
"0840": BoardInfo( "B96B-F446VE", "stm32f446ve", None, ),
Expand Down

0 comments on commit e3d468d

Please sign in to comment.