Fix ESP32 Windows build after battling escape characters.

Add esp32 Windows target to Actions.
This commit is contained in:
Matthew Colvin 2023-08-09 14:55:40 -05:00
parent ae72892181
commit 02ae40e3bf
2 changed files with 5 additions and 2 deletions

View file

@ -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

View file

@ -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