~ruther/qmk_firmware

4e89732617454a600189242d417f5e2ba0855683 — Fred Sundvik 9 years ago d79e94a
Enable and fix compilation of more files
2 files changed, 13 insertions(+), 17 deletions(-)

M led_test.c
M visualizer.mk
M led_test.c => led_test.c +12 -12
@@ 29,20 29,20 @@ keyframe_animation_t led_test_animation = {
    .num_frames = 14,
    .loop = true,
    .frame_lengths = {
        MS2ST(1000), // fade in
        MS2ST(1000), // no op (leds on)
        MS2ST(1000), // fade out
        MS2ST(1000), // crossfade
        MS2ST(3000), // left to rigt (outside in)
        MS2ST(1000), // crossfade
        MS2ST(3000), // top_to_bottom
        gfxMillisecondsToTicks(1000), // fade in
        gfxMillisecondsToTicks(1000), // no op (leds on)
        gfxMillisecondsToTicks(1000), // fade out
        gfxMillisecondsToTicks(1000), // crossfade
        gfxMillisecondsToTicks(3000), // left to rigt (outside in)
        gfxMillisecondsToTicks(1000), // crossfade
        gfxMillisecondsToTicks(3000), // top_to_bottom
        0,           // mirror leds
        MS2ST(1000), // crossfade
        MS2ST(3000), // left_to_right (mirrored, so inside out)
        MS2ST(1000), // crossfade
        MS2ST(3000), // top_to_bottom
        gfxMillisecondsToTicks(1000), // crossfade
        gfxMillisecondsToTicks(3000), // left_to_right (mirrored, so inside out)
        gfxMillisecondsToTicks(1000), // crossfade
        gfxMillisecondsToTicks(3000), // top_to_bottom
        0,           // normal leds
        MS2ST(1000), // crossfade
        gfxMillisecondsToTicks(1000), // crossfade

    },
    .frame_functions = {

M visualizer.mk => visualizer.mk +1 -5
@@ 31,17 31,15 @@ USE_UGFX = yes
endif

ifdef LCD_BACKLIGHT_ENABLE
ifndef EMULATOR
SRC += $(VISUALIZER_DIR)/lcd_backlight.c
ifndef EMULATOR
SRC += lcd_backlight_hal.c
endif
UDEFS += -DLCD_BACKLIGHT_ENABLE
endif

ifdef LED_ENABLE
ifndef EMULATOR
SRC += $(VISUALIZER_DIR)/led_test.c
endif
UDEFS += -DLED_ENABLE
USE_UGFX = yes
endif


@@ 54,10 52,8 @@ ULIBS += $(patsubst %,-l%,$(patsubst -l%,%,$(GFXLIBS)))
endif

ifndef VISUALIZER_USER
ifndef EMULATOR
VISUALIZER_USER = visualizer_user.c
endif
endif
SRC += $(VISUALIZER_USER)

ifdef EMULATOR