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(gen): Use LVGL JSON in CMake based builds too - RP2040 and ESP32 #350

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Changes from 1 commit
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
Next Next commit
use updated lv_indev_t name
  • Loading branch information
liamHowatt committed Jul 19, 2024
commit 490cc15b965c6c7da636eee571986bf424c287f3
2 changes: 1 addition & 1 deletion driver/stm32/STM32F7DISC/modrk043fn48h.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void HAL_LTDC_ReloadEventCallback(LTDC_HandleTypeDef *hltdc) {
lv_display_flush_ready(dma2d_disp_drv);
}

STATIC void mp_rk043fn48h_ts_read(struct _lv_indev_t *indev_drv, lv_indev_data_t *data) {
STATIC void mp_rk043fn48h_ts_read(lv_indev_t *indev_drv, lv_indev_data_t *data) {
static TS_StateTypeDef ts_state = {0};
static int32_t lastX = 0;
static int32_t lastY = 0;
Expand Down