#ifndef CONFIG_H_ #define CONFIG_H_ #include "bang.h" // Allow the user to switch between instances with the L and R buttons. #define SWITCH_BETWEEN_INSTANCES false // The number of Bedrock instances to initialise. This will determine // the maximum number of programs that can run simultaneously (including // the keyboard program). Should be at least 2. #define NUM_INSTANCES 2 // Number of instances reserved for user programs. #define USER_INSTANCES (NUM_INSTANCES-1) // Index of the keyboard instance, which will display on the bottom // screen when the main instance is on the top screen. #define KEY_INSTANCE (NUM_INSTANCES-1) #endif