Fix ESP32 Windows build after battling escape characters.
Add esp32 Windows target to Actions.
This commit is contained in:
parent
ae72892181
commit
02ae40e3bf
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:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ windows-latest, ubuntu-latest ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
|
@ -91,7 +91,7 @@ build_flags =
|
|||
; --------------- LVGL Defines --------------------------------------
|
||||
-D LV_TICK_CUSTOM=1
|
||||
-D LV_TICK_CUSTOM_INCLUDE="\"Arduino.h\""
|
||||
-D LV_TICK_CUSTOM_SYS_TIME_EXPR="\(millis\(\)\)"
|
||||
-D LV_TICK_CUSTOM_SYS_TIME_EXPR="'(millis())'"
|
||||
|
||||
; ------------- Includes --------------------------------------------
|
||||
-I HAL/Targets/ESP32
|
||||
|
|
Loading…
Add table
Reference in a new issue