Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10.5"
python-version: "3.10"

- name: Install dependencies
run: |
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10.5"
python-version: "3.10"

- name: Set up Node
uses: actions/setup-node@v2
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
examples/projects/NUCLEO-F072RB,
examples/projects/NUCLEO-L073RZ,
examples/projects/STM32L4S5_discovery,
examples/projects/ESP32,
# examples/projects/ESP32,
examples/projects/native,
]
os: [macos-latest, windows-latest, ubuntu-latest]
Expand All @@ -115,7 +115,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10.5"
python-version: "3.10"

- name: Install dependencies
run: |
Expand Down
2 changes: 2 additions & 0 deletions examples/projects/l0/button_freertos/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ build_unflags = -Os
build_flags =
-include node_config.h
-DSTM32F0 ;FreeRTos arch selection
-DFREERTOS_TAG=V11.0.1
-O1

[env:l0_with_bootloader]
Expand All @@ -43,6 +44,7 @@ build_flags =
-O1
-DSTM32F0 ;FreeRTos arch selection
-DWITH_BOOTLOADER
-DFREERTOS_TAG=V11.0.1
upload_protocol = custom
upload_flags =
-t2
Expand Down