forked from ChrisMicro/ArduinoOnPc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
26 lines (23 loc) · 817 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
CUSTOM_LIBS := libraries
# Use SDL instead of X11. It is faster but requires SDL.
LINUX_RENDERER_SDL = yes
# SDL is even too fast compared to regular neopixels, so we introduce
# a configurable delay here
LINUX_RENDERER_SDL_MAIN_DELAY = 10
# RPI4
#LINUX_RENDERER_SDL_MAIN_DELAY = 40
ARDUINO_LIBS += SPI
ARDUINO_LIBS += FastLED
ARDUINO_LIBS += Framebuffer_GFX
# LINUX_RENDERER_SDL uses FastLED_NeoMatrix and FastLED
ARDUINO_LIBS += FastLED_NeoMatrix
# Comment this out unless you are building for X11 rendering
ARDUINO_LIBS += FastLED_TFTWrapper_GFX
# Comment this out unless you are building for RGBPanels on rPi
ARDUINO_LIBS += FastLED_RPIRGBPanel_GFX
ARDUINO_LIBS += Adafruit_GFX
ARDUINO_LIBS += LEDMatrix
ARDUINO_LIBS += LEDSprites
ARDUINO_LIBS += LEDText
BUILD_ROOT := build
include ../../makeNativeArduino.mk