Fix ESP32 Windows build after battling escape characters.
Add esp32 Windows target to Actions.
This commit is contained in:
parent
bcfda0641c
commit
64c61425da
2 changed files with 5 additions and 2 deletions
5
.github/workflows/build-platformio.yml
vendored
5
.github/workflows/build-platformio.yml
vendored
|
@ -4,7 +4,10 @@ on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ windows-latest, ubuntu-latest ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
|
@ -91,7 +91,7 @@ build_flags =
|
||||||
; --------------- LVGL Defines --------------------------------------
|
; --------------- LVGL Defines --------------------------------------
|
||||||
-D LV_TICK_CUSTOM=1
|
-D LV_TICK_CUSTOM=1
|
||||||
-D LV_TICK_CUSTOM_INCLUDE="\"Arduino.h\""
|
-D LV_TICK_CUSTOM_INCLUDE="\"Arduino.h\""
|
||||||
-D LV_TICK_CUSTOM_SYS_TIME_EXPR="\(millis\(\)\)"
|
-D LV_TICK_CUSTOM_SYS_TIME_EXPR="'(millis())'"
|
||||||
|
|
||||||
; ------------- Includes --------------------------------------------
|
; ------------- Includes --------------------------------------------
|
||||||
-I HAL/Targets/ESP32
|
-I HAL/Targets/ESP32
|
||||||
|
|
Loading…
Add table
Reference in a new issue