Skip to content

Commit db443ea

Browse files
committed
Merge branch 'release/v4.4.0'
2 parents 19308d5 + 747e539 commit db443ea

39 files changed

+1070
-117
lines changed

boards/disco_l100rc.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m3",
5+
"extra_flags": "-DSTM32L100xC",
6+
"f_cpu": "32000000L",
7+
"mcu": "stm32l100rct6"
8+
},
9+
"debug": {
10+
"default_tools": [
11+
"stlink"
12+
],
13+
"onboard_tools": [
14+
"stlink"
15+
],
16+
"openocd_board": "st_nucleo_l1",
17+
"svd_path": "STM32L1xx.svd"
18+
},
19+
"frameworks": [
20+
"stm32cube"
21+
],
22+
"name": "ST 32L100DISCOVERY",
23+
"platform": "ststm32",
24+
"upload": {
25+
"maximum_ram_size": 16384,
26+
"maximum_size": 262144,
27+
"protocol": "stlink",
28+
"protocols": [
29+
"stlink",
30+
"blackmagic"
31+
]
32+
},
33+
"url": "https://www.st.com/en/evaluation-tools/32l100cdiscovery.html",
34+
"vendor": "ST"
35+
}

boards/disco_l496ag.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"build": {
3+
"cpu": "cortex-m4",
4+
"extra_flags": "-DSTM32L496xx",
5+
"f_cpu": "80000000L",
6+
"mcu": "stm32l496agi6"
7+
},
8+
"connectivity": [
9+
"can"
10+
],
11+
"debug": {
12+
"default_tools": [
13+
"stlink"
14+
],
15+
"onboard_tools": [
16+
"stlink"
17+
],
18+
"openocd_board": "stm32l4discovery",
19+
"openocd_target": "stm32l4x",
20+
"svd_path": "STM32L4x6.svd"
21+
},
22+
"frameworks": [
23+
"mbed",
24+
"stm32cube"
25+
],
26+
"name": "ST 32L496GDISCOVERY",
27+
"upload": {
28+
"maximum_ram_size": 327680,
29+
"maximum_size": 1048576,
30+
"protocol": "mbed",
31+
"protocols": [
32+
"jlink",
33+
"stlink",
34+
"blackmagic",
35+
"mbed"
36+
]
37+
},
38+
"url": "https://www.st.com/en/evaluation-tools/32l496gdiscovery.html",
39+
"vendor": "ST"
40+
}

boards/genericSTM32F103C8.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "stm32",
44
"cpu": "cortex-m3",
5-
"extra_flags": "-DSTM32F103x8",
5+
"extra_flags": "-DSTM32F103xB",
66
"f_cpu": "72000000L",
77
"hwids": [
88
[

boards/genericSTM32F103R8.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "stm32",
44
"cpu": "cortex-m3",
5-
"extra_flags": "-DSTM32F103x8",
5+
"extra_flags": "-DSTM32F103xB",
66
"f_cpu": "72000000L",
77
"hwids": [
88
[

boards/genericSTM32F103RC.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "stm32",
44
"cpu": "cortex-m3",
5-
"extra_flags": "-DSTM32F103xC",
5+
"extra_flags": "-DSTM32F103xE",
66
"f_cpu": "72000000L",
77
"hwids": [
88
[

boards/genericSTM32F103T8.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m3",
5+
"extra_flags": "-DSTM32F103xB",
6+
"f_cpu": "72000000L",
7+
"hwids": [
8+
[
9+
"0x1EAF",
10+
"0x0003"
11+
],
12+
[
13+
"0x1EAF",
14+
"0x0004"
15+
]
16+
],
17+
"ldscript": "stm32f103x8.ld",
18+
"mcu": "stm32f103t8t6",
19+
"variant": "stm32f1"
20+
},
21+
"debug": {
22+
"openocd_target": "stm32f1x",
23+
"svd_path": "STM32F103xx.svd"
24+
},
25+
"frameworks": [
26+
"arduino",
27+
"libopencm3",
28+
"stm32cube"
29+
],
30+
"name": "STM32F103T8 (20k RAM. 64k Flash)",
31+
"upload": {
32+
"disable_flushing": false,
33+
"maximum_ram_size": 65536,
34+
"maximum_size": 20480,
35+
"protocol": "stlink",
36+
"protocols": [
37+
"jlink",
38+
"stlink",
39+
"blackmagic",
40+
"serial",
41+
"dfu"
42+
],
43+
"require_upload_port": true,
44+
"use_1200bps_touch": false,
45+
"wait_for_upload_port": false
46+
},
47+
"url": "http://www.st.com/en/microcontrollers/stm32f103t8.html",
48+
"vendor": "Generic"
49+
}

boards/genericSTM32F103TB.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m3",
5+
"extra_flags": "-DSTM32F103xB",
6+
"f_cpu": "72000000L",
7+
"hwids": [
8+
[
9+
"0x1EAF",
10+
"0x0003"
11+
],
12+
[
13+
"0x1EAF",
14+
"0x0004"
15+
]
16+
],
17+
"ldscript": "stm32f103xb.ld",
18+
"mcu": "stm32f103tbt6",
19+
"variant": "stm32f1"
20+
},
21+
"debug": {
22+
"openocd_target": "stm32f1x",
23+
"svd_path": "STM32F103xx.svd"
24+
},
25+
"frameworks": [
26+
"arduino",
27+
"libopencm3",
28+
"stm32cube"
29+
],
30+
"name": "STM32F103TB (20k RAM. 128k Flash)",
31+
"upload": {
32+
"disable_flushing": false,
33+
"maximum_ram_size": 20480,
34+
"maximum_size": 131072,
35+
"protocol": "stlink",
36+
"protocols": [
37+
"jlink",
38+
"stlink",
39+
"blackmagic",
40+
"serial",
41+
"dfu"
42+
],
43+
"require_upload_port": true,
44+
"use_1200bps_touch": false,
45+
"wait_for_upload_port": false
46+
},
47+
"url": "http://www.st.com/en/microcontrollers/stm32f103tb.html",
48+
"vendor": "Generic"
49+
}

boards/genericSTM32F103VB.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m3",
5+
"extra_flags": "-DSTM32F103xB",
6+
"f_cpu": "72000000L",
7+
"hwids": [
8+
[
9+
"0x1EAF",
10+
"0x0003"
11+
],
12+
[
13+
"0x1EAF",
14+
"0x0004"
15+
]
16+
],
17+
"ldscript": "stm32f103xb.ld",
18+
"mcu": "stm32f103vbt6",
19+
"variant": "stm32f1"
20+
},
21+
"debug": {
22+
"openocd_target": "stm32f1x",
23+
"svd_path": "STM32F103xx.svd"
24+
},
25+
"frameworks": [
26+
"arduino",
27+
"libopencm3",
28+
"stm32cube"
29+
],
30+
"name": "STM32F103VB (20k RAM. 128k Flash)",
31+
"upload": {
32+
"disable_flushing": false,
33+
"maximum_ram_size": 20480,
34+
"maximum_size": 131072,
35+
"protocol": "stlink",
36+
"protocols": [
37+
"jlink",
38+
"stlink",
39+
"blackmagic",
40+
"serial",
41+
"dfu"
42+
],
43+
"require_upload_port": true,
44+
"use_1200bps_touch": false,
45+
"wait_for_upload_port": false
46+
},
47+
"url": "http://www.st.com/en/microcontrollers/stm32f103vb.html",
48+
"vendor": "Generic"
49+
}

boards/genericSTM32F103VC.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "stm32",
44
"cpu": "cortex-m3",
5-
"extra_flags": "-DSTM32F103xC",
5+
"extra_flags": "-DSTM32F103xE",
66
"f_cpu": "72000000L",
77
"hwids": [
88
[

boards/genericSTM32F103VD.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m3",
5+
"extra_flags": "-DSTM32F103xE",
6+
"f_cpu": "72000000L",
7+
"hwids": [
8+
[
9+
"0x1EAF",
10+
"0x0003"
11+
],
12+
[
13+
"0x1EAF",
14+
"0x0004"
15+
]
16+
],
17+
"ldscript": "stm32f103xd.ld",
18+
"mcu": "stm32f103vdt6",
19+
"variant": "stm32f1"
20+
},
21+
"debug": {
22+
"openocd_target": "stm32f1x",
23+
"svd_path": "STM32F103xx.svd"
24+
},
25+
"frameworks": [
26+
"arduino",
27+
"libopencm3",
28+
"stm32cube"
29+
],
30+
"name": "STM32F103VD (64k RAM. 384k Flash)",
31+
"upload": {
32+
"disable_flushing": false,
33+
"maximum_ram_size": 65536,
34+
"maximum_size": 393216,
35+
"protocol": "stlink",
36+
"protocols": [
37+
"jlink",
38+
"stlink",
39+
"blackmagic",
40+
"serial",
41+
"dfu"
42+
],
43+
"require_upload_port": true,
44+
"use_1200bps_touch": false,
45+
"wait_for_upload_port": false
46+
},
47+
"url": "http://www.st.com/en/microcontrollers/stm32f103vd.html",
48+
"vendor": "Generic"
49+
}

0 commit comments

Comments
 (0)