mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* refactor modules * moved esp_lvgl_port to libs/ * added missing file * fix for sim build * various sim/pc fixes * lvgl improvements * added missing cmake files
19 lines
369 B
C
19 lines
369 B
C
#pragma once
|
|
|
|
#include "tactility-esp.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Available for HardwareConfig customizations
|
|
DisplayDriver board_2432s024_create_display_driver();
|
|
TouchDriver board_2432s024_create_touch_driver();
|
|
|
|
// Capacitive touch version of the 2.4" yellow board
|
|
extern const HardwareConfig yellow_board_24inch_cap;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|