Skip to content

Commit 1ce325a

Browse files
committed
Merge branch 'release/v19.2.0'
2 parents eb98d12 + 1f652f3 commit 1ce325a

19 files changed

+277305
-123671
lines changed

boards/genericSTM32F407IGT6.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
]
1616
],
1717
"mcu": "stm32f407igt6",
18-
"product_line": "STM32F407xx"
18+
"product_line": "STM32F407xx",
19+
"variant": "STM32F4xx/F407I(E-G)(H-T)_F417I(E-G)(H-T)"
1920
},
2021
"debug": {
2122
"default_tools": [
@@ -30,14 +31,15 @@
3031
"svd_path": "STM32F40x.svd"
3132
},
3233
"frameworks": [
34+
"arduino",
3335
"cmsis",
3436
"stm32cube",
3537
"libopencm3"
3638
],
3739
"name": "STM32F407IG (192k RAM. 1024k Flash)",
3840
"upload": {
3941
"disable_flushing": false,
40-
"maximum_ram_size": 196608,
42+
"maximum_ram_size": 131072,
4143
"maximum_size": 1048576,
4244
"protocol": "stlink",
4345
"protocols": [

boards/genericSTM32H750VB.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"name": "STM32H750VBT6 (1024k RAM. 128k Flash)",
2323
"upload": {
24-
"maximum_ram_size": 1048576,
24+
"maximum_ram_size": 524288,
2525
"maximum_size": 131072,
2626
"protocol": "serial",
2727
"protocols": [

boards/nucleo_g070rb.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"arduino",
2727
"cmsis",
2828
"libopencm3",
29-
"stm32cube"
29+
"stm32cube",
30+
"zephyr"
3031
],
3132
"name": "Nucleo G070RB",
3233
"upload": {

boards/nucleo_g491re.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m4",
5+
"extra_flags": "-DSTM32G4 -DSTM32G4xx -DSTM32G491xx",
6+
"f_cpu": "170000000L",
7+
"mcu": "stm32g491ret6",
8+
"product_line": "STM32G491xx",
9+
"variant": "STM32G491RE"
10+
},
11+
"connectivity": [
12+
"can"
13+
],
14+
"debug": {
15+
"default_tools": [
16+
"stlink"
17+
],
18+
"jlink_device": "STM32G491RE",
19+
"onboard_tools": [
20+
"stlink"
21+
],
22+
"openocd_target": "stm32g4x",
23+
"svd_path": "STM32G491xx.svd"
24+
},
25+
"frameworks": [
26+
"stm32cube"
27+
],
28+
"name": "Nucleo G491RE",
29+
"upload": {
30+
"maximum_ram_size": 114688,
31+
"maximum_size": 524288,
32+
"protocol": "stlink",
33+
"protocols": [
34+
"stlink",
35+
"jlink",
36+
"cmsis-dap",
37+
"blackmagic",
38+
"mbed"
39+
]
40+
},
41+
"url": "https://www.st.com/en/evaluation-tools/nucleo-g491re.html",
42+
"vendor": "ST"
43+
}

boards/weact_mini_h743vitx.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"maximum_size": 2097152,
3535
"protocol": "stlink",
3636
"protocols": [
37+
"dfu",
3738
"jlink",
3839
"cmsis-dap",
3940
"stlink",

builder/main.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,8 @@ def __configure_upload_port(env):
281281

282282
env.Replace(
283283
__configure_upload_port=__configure_upload_port,
284-
UPLOADER=join(
285-
'"%s"' % platform.get_package_dir("tool-stm32duino") or "",
286-
"stm32flash", "stm32flash"),
284+
UPLOADER='"%s"' % join(
285+
platform.get_package_dir("tool-stm32flash") or "", "stm32flash"),
287286
UPLOADERFLAGS=[
288287
"-g", board.get("upload.offset_address", "0x08000000"),
289288
"-b", env.subst("$UPLOAD_SPEED") or "115200", "-w"

0 commit comments

Comments
 (0)