Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
45 lines (37 sloc) 2.15 KB
/*
*
* compile options.
*
*/
#ifndef OC_OPTIONS_H_
#define OC_OPTIONS_H_
/* ------------ uncomment for use with Plum Audio VOR anabled versions (OCP, 1uO_c v2, 4Robots) --------------------------------------------------------- */
//#define VOR
/* ------------ uncomment for use with Plum Audio 1uO_c 4Robots (To use Up button long press to change VOR instead activate screensaver) ---------------- */
//#define VOR_NO_RANGE_BUTTON
/* ------------ uncomment for Buchla/non-octaval/quartertone support: ----------------------------------------------------------------------------------- */
//#define BUCHLA_SUPPORT
/* ------------ uncomment for use with Northernlight cOC program card: ---------------------------------------------------------------------------------- */
//#define BUCHLA_cOC
/* ------------ uncomment for use with Northernlight 4U / cOC : ----------------------------------------------------------------------------------------- */
//#define BUCHLA_4U
/* ------------ uncomment for boring app names ---------------------------------------------------------------------------------------------------------- */
//#define BORING_APP_NAMES
/* ------------ print debug messages to USB serial ------------------------------------------------------------------------------------------------------ */
//#define PRINT_DEBUG
/* ------------ flip screen / IO mapping ---------------------------------------------------------------------------------------------------------------- */
//#define FLIP_180
/* ------------ invert screen pixels -------------------------------------------------------------------------------------------------------------------- */
//#define INVERT_DISPLAY
/* ------------ use DAC8564 ----------------------------------------------------------------------------------------------------------------------------- */
//#define DAC8564
/* ------------ 0 / 10V range --------------------------------------------------------------------------------------------------------------------------- */
//#define IO_10V
/* do not edit the stuff below (unless ... ) */
#if defined(IO_10V)
#define BUCHLA_4U
#endif
#if defined(VOR)
#define IO_10V
#endif
#endif