mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
16 lines
361 B
C
16 lines
361 B
C
/* helper for different display CVFD implementations */
|
|
#if HAVE_CST_HARDWARE
|
|
#include <driver/vfd.h>
|
|
#endif
|
|
#if HAVE_GENERIC_HARDWARE || HAVE_ARM_HARDWARE || HAVE_MIPS_HARDWARE
|
|
#if BOXMODEL_OSMIO4KPLUS
|
|
#include <driver/lcdd.h>
|
|
#define CVFD CLCD
|
|
#else
|
|
#include <driver/simple_display.h>
|
|
#endif
|
|
#endif
|
|
#ifdef ENABLE_GRAPHLCD
|
|
#include <driver/glcd/glcd.h>
|
|
#endif
|