FreeRTOS Tetris
EmulatorConfig.h
Go to the documentation of this file.
1 
11 #ifndef __EMULATOR_CONFIG_H__
12 #define __EMULATOR_CONFIG_H__
13 
21 #define WINDOW_TITLE "FreeRTOS Tetris"
22 #define SCREEN_WIDTH 700
23 #define SCREEN_HEIGHT 640
24 #define RESOURCES_DIRECTORY "../resources"
25 #define FONTS_DIRECTORY "../resources/fonts"
26 #define GAMEBOY_FONT "Early GameBoy.ttf"
27 #define DEFAULT_FONT GAMEBOY_FONT
28 #define DEFAULT_FONT_SIZE 15
29 
30 #define configFPS_LIMIT 1
31 #define configFPS_LIMIT_RATE 50
32 #define mainGENERIC_PRIORITY (tskIDLE_PRIORITY)
33 #define mainGENERIC_STACK_SIZE ((unsigned short)2560)
34 
36 
37 #endif //__EMULATOR_CONFIG_H__