mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-06-21 05:15:05 +00:00
* improvements for cross-platform compiling * moved tactility-core to libs/ * splitup improvements * remove git/gitmodules from freertos * better platformbetter platform checks * added build scripts * delete mbedtls * re-add mbedtls * fixes and improvements * added pc build * simplify build scripts * revert build scrpit * updated builds * fix for pc * fix for pc * fix for build
16 lines
462 B
C
16 lines
462 B
C
#pragma once
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
// Supported hardware:
|
|
#if defined(CONFIG_TT_BOARD_LILYGO_TDECK)
|
|
#include "lilygo_tdeck.h"
|
|
#define TT_BOARD_HARDWARE &lilygo_tdeck
|
|
#elif defined(CONFIG_TT_BOARD_YELLOW_BOARD_24_CAP)
|
|
#include "yellow_board.h"
|
|
#define TT_BOARD_HARDWARE &yellow_board_24inch_cap
|
|
#else
|
|
#define TT_BOARD_HARDWARE NULL
|
|
#error Replace TT_BOARD_HARDWARE in main.c with your own. Or copy one of the ./sdkconfig.board.* files into ./sdkconfig.
|
|
#endif
|