Use ugfx API instead of chibios

This commit is contained in:
Fred Sundvik 2016-05-17 09:35:02 +03:00
parent 15bdef3ee9
commit d79e94adb1
3 changed files with 28 additions and 20 deletions

2
ugfx

@ -1 +1 @@
Subproject commit 314a066d11f09d295d42054a0b53fa1a95c0ba0a Subproject commit 7d7eeef0ad0f1b28f4fb86ad931cb6774c7b9e81

View file

@ -23,7 +23,6 @@ SOFTWARE.
*/ */
#include "visualizer.h" #include "visualizer.h"
#include "ch.h"
#include "config.h" #include "config.h"
#include <string.h> #include <string.h>
@ -68,7 +67,7 @@ static bool same_status(visualizer_keyboard_status_t* status1, visualizer_keyboa
status1->suspended == status2->suspended; status1->suspended == status2->suspended;
} }
static event_source_t layer_changed_event; static GSourceHandle layer_changed_event;
static bool visualizer_enabled = false; static bool visualizer_enabled = false;
#define MAX_SIMULTANEOUS_ANIMATIONS 4 #define MAX_SIMULTANEOUS_ANIMATIONS 4
@ -132,7 +131,7 @@ void stop_all_keyframe_animations(void) {
} }
} }
static bool update_keyframe_animation(keyframe_animation_t* animation, visualizer_state_t* state, systime_t delta, systime_t* sleep_time) { static bool update_keyframe_animation(keyframe_animation_t* animation, visualizer_state_t* state, systemticks_t delta, systemticks_t* sleep_time) {
// TODO: Clean up this messy code // TODO: Clean up this messy code
dprintf("Animation frame%d, left %d, delta %d\n", animation->current_frame, dprintf("Animation frame%d, left %d, delta %d\n", animation->current_frame,
animation->time_left_in_frame, delta); animation->time_left_in_frame, delta);
@ -331,12 +330,13 @@ bool enable_visualization(keyframe_animation_t* animation, visualizer_state_t* s
} }
// TODO: Optimize the stack size, this is probably way too big // TODO: Optimize the stack size, this is probably way too big
static THD_WORKING_AREA(visualizerThreadStack, 1024); static DECLARE_THREAD_STACK(visualizerThreadStack, 1024);
static THD_FUNCTION(visualizerThread, arg) { static DECLARE_THREAD_FUNCTION(visualizerThread, arg) {
(void)arg; (void)arg;
event_listener_t event_listener; GListener event_listener;
chEvtRegister(&layer_changed_event, &event_listener, 0); geventListenerInit(&event_listener);
geventAttachSource(&event_listener, layer_changed_event, 0);
visualizer_keyboard_status_t initial_status = { visualizer_keyboard_status_t initial_status = {
.default_layer = 0xFFFFFFFF, .default_layer = 0xFFFFFFFF,
@ -363,12 +363,12 @@ static THD_FUNCTION(visualizerThread, arg) {
LCD_INT(state.current_lcd_color)); LCD_INT(state.current_lcd_color));
#endif #endif
systime_t sleep_time = TIME_INFINITE; systemticks_t sleep_time = TIME_INFINITE;
systime_t current_time = chVTGetSystemTimeX(); systemticks_t current_time = gfxSystemTicks();
while(true) { while(true) {
systime_t new_time = chVTGetSystemTimeX(); systemticks_t new_time = gfxSystemTicks();
systime_t delta = new_time - current_time; systemticks_t delta = new_time - current_time;
current_time = new_time; current_time = new_time;
bool enabled = visualizer_enabled; bool enabled = visualizer_enabled;
if (!same_status(&state.status, &current_status)) { if (!same_status(&state.status, &current_status)) {
@ -411,7 +411,7 @@ static THD_FUNCTION(visualizerThread, arg) {
sleep_time = 0; sleep_time = 0;
} }
systime_t after_update = chVTGetSystemTimeX(); systemticks_t after_update = gfxSystemTicks();
unsigned update_delta = after_update - current_time; unsigned update_delta = after_update - current_time;
if (sleep_time != TIME_INFINITE) { if (sleep_time != TIME_INFINITE) {
if (sleep_time > update_delta) { if (sleep_time > update_delta) {
@ -422,12 +422,14 @@ static THD_FUNCTION(visualizerThread, arg) {
} }
} }
dprintf("Update took %d, last delta %d, sleep_time %d\n", update_delta, delta, sleep_time); dprintf("Update took %d, last delta %d, sleep_time %d\n", update_delta, delta, sleep_time);
chEvtWaitOneTimeout(EVENT_MASK(0), sleep_time); geventEventWait(&event_listener, sleep_time);
} }
#ifdef LCD_ENABLE #ifdef LCD_ENABLE
gdispCloseFont(state.font_fixed5x8); gdispCloseFont(state.font_fixed5x8);
gdispCloseFont(state.font_dejavusansbold12); gdispCloseFont(state.font_dejavusansbold12);
#endif #endif
return 0;
} }
void visualizer_init(void) { void visualizer_init(void) {
@ -449,14 +451,14 @@ void visualizer_init(void) {
// We are using a low priority thread, the idea is to have it run only // We are using a low priority thread, the idea is to have it run only
// when the main thread is sleeping during the matrix scanning // when the main thread is sleeping during the matrix scanning
chEvtObjectInit(&layer_changed_event); gfxThreadCreate(visualizerThreadStack, sizeof(visualizerThreadStack),
(void)chThdCreateStatic(visualizerThreadStack, sizeof(visualizerThreadStack),
VISUALIZER_THREAD_PRIORITY, visualizerThread, NULL); VISUALIZER_THREAD_PRIORITY, visualizerThread, NULL);
} }
void update_status(bool changed) { void update_status(bool changed) {
if (changed) { if (changed) {
chEvtBroadcast(&layer_changed_event); GSourceListener* listener = geventGetSourceListener(layer_changed_event, NULL);
geventSendEvent(listener);
} }
#ifdef USE_SERIAL_LINK #ifdef USE_SERIAL_LINK
static systime_t last_update = 0; static systime_t last_update = 0;

View file

@ -21,9 +21,7 @@
# SOFTWARE. # SOFTWARE.
GFXLIB = $(VISUALIZER_DIR)/ugfx GFXLIB = $(VISUALIZER_DIR)/ugfx
ifndef EMULATOR
SRC += $(VISUALIZER_DIR)/visualizer.c SRC += $(VISUALIZER_DIR)/visualizer.c
endif
UINCDIR += $(GFXINC) $(VISUALIZER_DIR) UINCDIR += $(GFXINC) $(VISUALIZER_DIR)
ifdef LCD_ENABLE ifdef LCD_ENABLE
@ -33,13 +31,17 @@ USE_UGFX = yes
endif endif
ifdef LCD_BACKLIGHT_ENABLE ifdef LCD_BACKLIGHT_ENABLE
ifndef EMULATOR
SRC += $(VISUALIZER_DIR)/lcd_backlight.c SRC += $(VISUALIZER_DIR)/lcd_backlight.c
SRC += lcd_backlight_hal.c SRC += lcd_backlight_hal.c
endif
UDEFS += -DLCD_BACKLIGHT_ENABLE UDEFS += -DLCD_BACKLIGHT_ENABLE
endif endif
ifdef LED_ENABLE ifdef LED_ENABLE
ifndef EMULATOR
SRC += $(VISUALIZER_DIR)/led_test.c SRC += $(VISUALIZER_DIR)/led_test.c
endif
UDEFS += -DLED_ENABLE UDEFS += -DLED_ENABLE
USE_UGFX = yes USE_UGFX = yes
endif endif
@ -57,3 +59,7 @@ VISUALIZER_USER = visualizer_user.c
endif endif
endif endif
SRC += $(VISUALIZER_USER) SRC += $(VISUALIZER_USER)
ifdef EMULATOR
UINCDIR += $(TMK_DIR)/common
endif