mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-11 19:14:38 +00:00
Use ugfx API instead of chibios
This commit is contained in:
parent
15bdef3ee9
commit
d79e94adb1
3 changed files with 28 additions and 20 deletions
2
ugfx
2
ugfx
|
@ -1 +1 @@
|
|||
Subproject commit 314a066d11f09d295d42054a0b53fa1a95c0ba0a
|
||||
Subproject commit 7d7eeef0ad0f1b28f4fb86ad931cb6774c7b9e81
|
34
visualizer.c
34
visualizer.c
|
@ -23,7 +23,6 @@ SOFTWARE.
|
|||
*/
|
||||
|
||||
#include "visualizer.h"
|
||||
#include "ch.h"
|
||||
#include "config.h"
|
||||
#include <string.h>
|
||||
|
||||
|
@ -68,7 +67,7 @@ static bool same_status(visualizer_keyboard_status_t* status1, visualizer_keyboa
|
|||
status1->suspended == status2->suspended;
|
||||
}
|
||||
|
||||
static event_source_t layer_changed_event;
|
||||
static GSourceHandle layer_changed_event;
|
||||
static bool visualizer_enabled = false;
|
||||
|
||||
#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
|
||||
dprintf("Animation frame%d, left %d, delta %d\n", animation->current_frame,
|
||||
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
|
||||
static THD_WORKING_AREA(visualizerThreadStack, 1024);
|
||||
static THD_FUNCTION(visualizerThread, arg) {
|
||||
static DECLARE_THREAD_STACK(visualizerThreadStack, 1024);
|
||||
static DECLARE_THREAD_FUNCTION(visualizerThread, arg) {
|
||||
(void)arg;
|
||||
|
||||
event_listener_t event_listener;
|
||||
chEvtRegister(&layer_changed_event, &event_listener, 0);
|
||||
GListener event_listener;
|
||||
geventListenerInit(&event_listener);
|
||||
geventAttachSource(&event_listener, layer_changed_event, 0);
|
||||
|
||||
visualizer_keyboard_status_t initial_status = {
|
||||
.default_layer = 0xFFFFFFFF,
|
||||
|
@ -363,12 +363,12 @@ static THD_FUNCTION(visualizerThread, arg) {
|
|||
LCD_INT(state.current_lcd_color));
|
||||
#endif
|
||||
|
||||
systime_t sleep_time = TIME_INFINITE;
|
||||
systime_t current_time = chVTGetSystemTimeX();
|
||||
systemticks_t sleep_time = TIME_INFINITE;
|
||||
systemticks_t current_time = gfxSystemTicks();
|
||||
|
||||
while(true) {
|
||||
systime_t new_time = chVTGetSystemTimeX();
|
||||
systime_t delta = new_time - current_time;
|
||||
systemticks_t new_time = gfxSystemTicks();
|
||||
systemticks_t delta = new_time - current_time;
|
||||
current_time = new_time;
|
||||
bool enabled = visualizer_enabled;
|
||||
if (!same_status(&state.status, ¤t_status)) {
|
||||
|
@ -411,7 +411,7 @@ static THD_FUNCTION(visualizerThread, arg) {
|
|||
sleep_time = 0;
|
||||
}
|
||||
|
||||
systime_t after_update = chVTGetSystemTimeX();
|
||||
systemticks_t after_update = gfxSystemTicks();
|
||||
unsigned update_delta = after_update - current_time;
|
||||
if (sleep_time != TIME_INFINITE) {
|
||||
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);
|
||||
chEvtWaitOneTimeout(EVENT_MASK(0), sleep_time);
|
||||
geventEventWait(&event_listener, sleep_time);
|
||||
}
|
||||
#ifdef LCD_ENABLE
|
||||
gdispCloseFont(state.font_fixed5x8);
|
||||
gdispCloseFont(state.font_dejavusansbold12);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
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
|
||||
// when the main thread is sleeping during the matrix scanning
|
||||
chEvtObjectInit(&layer_changed_event);
|
||||
(void)chThdCreateStatic(visualizerThreadStack, sizeof(visualizerThreadStack),
|
||||
gfxThreadCreate(visualizerThreadStack, sizeof(visualizerThreadStack),
|
||||
VISUALIZER_THREAD_PRIORITY, visualizerThread, NULL);
|
||||
}
|
||||
|
||||
void update_status(bool changed) {
|
||||
if (changed) {
|
||||
chEvtBroadcast(&layer_changed_event);
|
||||
GSourceListener* listener = geventGetSourceListener(layer_changed_event, NULL);
|
||||
geventSendEvent(listener);
|
||||
}
|
||||
#ifdef USE_SERIAL_LINK
|
||||
static systime_t last_update = 0;
|
||||
|
|
|
@ -21,9 +21,7 @@
|
|||
# SOFTWARE.
|
||||
|
||||
GFXLIB = $(VISUALIZER_DIR)/ugfx
|
||||
ifndef EMULATOR
|
||||
SRC += $(VISUALIZER_DIR)/visualizer.c
|
||||
endif
|
||||
UINCDIR += $(GFXINC) $(VISUALIZER_DIR)
|
||||
|
||||
ifdef LCD_ENABLE
|
||||
|
@ -33,13 +31,17 @@ USE_UGFX = yes
|
|||
endif
|
||||
|
||||
ifdef LCD_BACKLIGHT_ENABLE
|
||||
ifndef EMULATOR
|
||||
SRC += $(VISUALIZER_DIR)/lcd_backlight.c
|
||||
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
|
||||
|
@ -57,3 +59,7 @@ VISUALIZER_USER = visualizer_user.c
|
|||
endif
|
||||
endif
|
||||
SRC += $(VISUALIZER_USER)
|
||||
|
||||
ifdef EMULATOR
|
||||
UINCDIR += $(TMK_DIR)/common
|
||||
endif
|
Loading…
Reference in a new issue