does CI work now?
This commit is contained in:
parent
6378731cbc
commit
2c86ceee73
2 changed files with 5 additions and 5 deletions
5
.github/workflows/pio_build.yml
vendored
5
.github/workflows/pio_build.yml
vendored
|
@ -46,6 +46,7 @@ jobs:
|
||||||
- name: Run PlatformIO
|
- name: Run PlatformIO
|
||||||
env:
|
env:
|
||||||
PLATFORMIO_BUILD_FLAGS: ${{ matrix.no_gfx }} ${{ matrix.no_fast_functions }} ${{ matrix.no_cie1931 }} ${{ matrix.virtual_panel }}
|
PLATFORMIO_BUILD_FLAGS: ${{ matrix.no_gfx }} ${{ matrix.no_fast_functions }} ${{ matrix.no_cie1931 }} ${{ matrix.virtual_panel }}
|
||||||
# PLATFORMIO_CI_SRC: ${{ matrix.example }}
|
PLATFORMIO_CI_SRC: ${{ matrix.example }}
|
||||||
# run: pio ci -e esp32 -c ${{ matrix.example }}/platformio.ini
|
# run: pio ci -e esp32 -c ${{ matrix.example }}/platformio.ini
|
||||||
run: pio run -d ${{ matrix.example }} -e esp32idf -c ${{ matrix.example }}/platformio.ini
|
run: pio ci -e esp32idf -c ${{ matrix.example }}/platformio.ini
|
||||||
|
# run: pio run -d ${{ matrix.example }} -e esp32idf -c ${{ matrix.example }}/platformio.ini
|
|
@ -1,14 +1,13 @@
|
||||||
// How to use this library with a FM6126 panel, thanks goes to:
|
// How to use this library with a FM6126 panel, thanks goes to:
|
||||||
// https://github.com/hzeller/rpi-rgb-led-matrix/issues/746
|
// https://github.com/hzeller/rpi-rgb-led-matrix/issues/746
|
||||||
|
|
||||||
|
//#ifdef IDF_BUILD
|
||||||
// IDF
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <freertos/FreeRTOS.h>
|
#include <freertos/FreeRTOS.h>
|
||||||
#include <freertos/task.h>
|
#include <freertos/task.h>
|
||||||
#include <driver/gpio.h>
|
#include <driver/gpio.h>
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
// IDF
|
//#endif
|
||||||
|
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include "xtensa/core-macros.h"
|
#include "xtensa/core-macros.h"
|
||||||
|
|
Loading…
Reference in a new issue