blob: 8fe80725d79b128a20bafcf7aa650ae20ea62e39 [file] [log] [blame] [edit]
#pragma once
// these are the defaults
#ifndef ALLOW_HIRES
#ifdef DISPLAY_ST7789
#define ALLOW_HIRES 1
#else
#define ALLOW_HIRES 0 // hires is currently not supported for VGA/DVI
#endif
#endif
#ifndef DISPLAY_WIDTH
#ifdef DISPLAY_ST7789
#define DISPLAY_WIDTH 240
#else
#define DISPLAY_WIDTH 320
#endif
#endif
#ifndef DISPLAY_HEIGHT
#define DISPLAY_HEIGHT 240
#endif
#ifndef OVERCLOCK_250
#define OVERCLOCK_250 1
#endif
#ifndef USB_VENDOR_ID
#define USB_VENDOR_ID 0xCafe
#endif
#ifndef USB_VENDOR_STR
#define USB_VENDOR_STR "TinyUSB"
#endif
#ifndef USB_PRODUCT_STR
#define USB_PRODUCT_STR "Device"
#endif