Skip to content

Commit bc50032

Browse files
committed
Merge branch 'release/v12.0.0'
2 parents 67b4a32 + 2ecdba1 commit bc50032

39 files changed

+1134
-102
lines changed

.github/workflows/examples.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-16.04, windows-latest, macos-latest]
11-
python-version: [2.7, 3.7]
11+
python-version: [3.7]
1212
example:
1313
- "examples/arduino-blink"
1414
- "examples/arduino-external-libs"
@@ -51,15 +51,10 @@ jobs:
5151
- "examples/zephyr-blink"
5252
- "examples/zephyr-cpp-synchronization"
5353
- "examples/zephyr-drivers-can"
54+
- "examples/zephyr-net-civetweb"
5455
- "examples/zephyr-net-https-client"
5556
- "examples/zephyr-subsys-usb-hid-mouse"
5657
- "tests/arduino-blink-different-cores"
57-
exclude:
58-
- {python-version: 2.7, example: "examples/zephyr-blink"}
59-
- {python-version: 2.7, example: "examples/zephyr-cpp-synchronization"}
60-
- {python-version: 2.7, example: "examples/zephyr-drivers-can"}
61-
- {python-version: 2.7, example: "examples/zephyr-net-https-client"}
62-
- {python-version: 2.7, example: "examples/zephyr-subsys-usb-hid-mouse"}
6358
runs-on: ${{ matrix.os }}
6459
steps:
6560
- uses: actions/checkout@v2

boards/genericSTM32F373RC.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m4",
5+
"extra_flags": "-DSTM32F3 -DSTM32F373xC",
6+
"f_cpu": "72000000L",
7+
"mcu": "stm32f373rct6",
8+
"product_line": "STM32F373xC"
9+
},
10+
"connectivity": [
11+
"can"
12+
],
13+
"debug": {
14+
"jlink_device": "STM32F373RC",
15+
"openocd_target": "stm32f3x",
16+
"svd_path": "STM32F37x.svd"
17+
},
18+
"frameworks": [
19+
"cmsis",
20+
"stm32cube"
21+
],
22+
"name": "STM32F373RC (32k RAM. 256k Flash)",
23+
"upload": {
24+
"maximum_ram_size": 32768,
25+
"maximum_size": 262144,
26+
"protocol": "stlink",
27+
"protocols": [
28+
"jlink",
29+
"stlink",
30+
"cmsis-dap",
31+
"blackmagic"
32+
]
33+
},
34+
"url": "https://www.st.com/en/microcontrollers/stm32f373rc.html",
35+
"vendor": "Generic"
36+
}

boards/genericSTM32F407IGT6.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m4",
5+
"extra_flags": "-DSTM32F407xx -DSTM32F4",
6+
"f_cpu": "168000000L",
7+
"hwids": [
8+
[
9+
"0x1EAF",
10+
"0x0003"
11+
],
12+
[
13+
"0x0483",
14+
"0x3748"
15+
]
16+
],
17+
"mcu": "stm32f407igt6",
18+
"product_line": "STM32F407xx"
19+
},
20+
"debug": {
21+
"default_tools": [
22+
"stlink"
23+
],
24+
"jlink_device": "STM32F407IG",
25+
"openocd_extra_args": [
26+
"-c",
27+
"reset_config none"
28+
],
29+
"openocd_target": "stm32f4x",
30+
"svd_path": "STM32F40x.svd"
31+
},
32+
"frameworks": [
33+
"cmsis",
34+
"stm32cube",
35+
"libopencm3"
36+
],
37+
"name": "STM32F407IG (192k RAM. 1024k Flash)",
38+
"upload": {
39+
"disable_flushing": false,
40+
"maximum_ram_size": 196608,
41+
"maximum_size": 1048576,
42+
"protocol": "stlink",
43+
"protocols": [
44+
"blackmagic",
45+
"dfu",
46+
"jlink",
47+
"serial",
48+
"stlink"
49+
],
50+
"require_upload_port": true,
51+
"use_1200bps_touch": false,
52+
"wait_for_upload_port": false
53+
},
54+
"url": "https://www.st.com/en/microcontrollers-microprocessors/stm32f407ig.html",
55+
"vendor": "Generic"
56+
}

boards/genericSTM32F411RE.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
"stm32cube",
2020
"libopencm3"
2121
],
22-
"name": "STM32F411RE (128k RAM. 256k Flash)",
22+
"name": "STM32F411RE (128k RAM. 512k Flash)",
2323
"upload": {
2424
"maximum_ram_size": 131072,
25-
"maximum_size": 262144,
25+
"maximum_size": 524288,
2626
"protocol": "serial",
2727
"protocols": [
2828
"blackmagic",

boards/nucleo_f303k8.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"cmsis",
2828
"mbed",
2929
"stm32cube",
30-
"libopencm3"
30+
"libopencm3",
31+
"zephyr"
3132
],
3233
"name": "ST Nucleo F303K8",
3334
"upload": {

boards/nucleo_f410rb.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"cmsis",
2323
"mbed",
2424
"stm32cube",
25-
"libopencm3"
25+
"libopencm3",
26+
"zephyr"
2627
],
2728
"name": "ST Nucleo F410RB",
2829
"upload": {

boards/nucleo_h723zg.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m7",
5+
"extra_flags": "-DSTM32H7xx -DSTM32H723xx",
6+
"f_cpu": "550000000L",
7+
"mcu": "stm32h723zgt6",
8+
"product_line": "STM32H723xx"
9+
},
10+
"connectivity": [
11+
"can",
12+
"ethernet"
13+
],
14+
"debug": {
15+
"default_tools": [
16+
"stlink"
17+
],
18+
"jlink_device": "STM32H723ZG",
19+
"onboard_tools": [
20+
"stlink"
21+
],
22+
"openocd_target": "stm32h7x",
23+
"svd_path": "STM32H7x3.svd"
24+
},
25+
"frameworks": [
26+
"cmsis",
27+
"stm32cube",
28+
"zephyr"
29+
],
30+
"name": "ST Nucleo H723ZG",
31+
"upload": {
32+
"maximum_ram_size": 442368,
33+
"maximum_size": 1048576,
34+
"protocol": "stlink",
35+
"protocols": [
36+
"blackmagic",
37+
"cmsis-dap",
38+
"jlink",
39+
"stlink",
40+
"mbed"
41+
]
42+
},
43+
"url": "https://www.st.com/en/evaluation-tools/nucleo-h723zg.html",
44+
"vendor": "ST"
45+
}

boards/nucleo_l011k4.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"frameworks": [
2121
"cmsis",
2222
"stm32cube",
23-
"libopencm3"
23+
"libopencm3",
24+
"zephyr"
2425
],
2526
"name": "ST Nucleo L011K4",
2627
"upload": {

boards/nucleo_l031k6.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"cmsis",
2424
"mbed",
2525
"stm32cube",
26-
"libopencm3"
26+
"libopencm3",
27+
"zephyr"
2728
],
2829
"name": "ST Nucleo L031K6",
2930
"upload": {

boards/nucleo_l433rc_p.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"cmsis",
2626
"mbed",
2727
"stm32cube",
28-
"libopencm3"
28+
"libopencm3",
29+
"zephyr"
2930
],
3031
"name": "ST Nucleo L433RC-P",
3132
"upload": {

0 commit comments

Comments
 (0)