Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build failure #158

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ board_build.f_cpu = 240000000L
board_build.f_flash = 80000000L
framework = arduino
lib_deps =
https://github.com/avalonbits/vdp-gl.git#1.0.3
https://github.com/avalonbits/vdp-gl.git#1.0.4
fbiego/ESP32Time@^2.0.0
build_flags =
-DBOARD_HAS_PSRAM
Expand Down
2 changes: 2 additions & 0 deletions video/agon.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,10 @@
#if CONFIG_FREERTOS_UNICORE
#define ARDUINO_RUNNING_CORE 0
#else
#ifndef ARDUINO_RUNNING_CORE
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this change is needed - all this does is remove a compiler warning, and this may actually be changing this value unnecessarily

#define ARDUINO_RUNNING_CORE 1
#endif
#endif

// Function Prototypes
//
Expand Down