An exciting survival game with random terrain by Jonne

Dependencies:   PokittoLib

Fork of AnimationTest by Pokitto Community Team

Committer:
Pokitto
Date:
Wed May 02 06:46:41 2018 +0000
Revision:
8:809b1982b4ae
Parent:
4:1b2348ec80ad
New pokittolib with improved volume controls & better button handling

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 1:9e3293ab4ad9 1 /**************************************************************************/
Pokitto 1:9e3293ab4ad9 2 /*!
Pokitto 1:9e3293ab4ad9 3 @file My_settings.h
Pokitto 1:9e3293ab4ad9 4 @author XX
Pokitto 1:9e3293ab4ad9 5
Pokitto 1:9e3293ab4ad9 6 @section HOW TO USE My_settings
Pokitto 1:9e3293ab4ad9 7
Pokitto 1:9e3293ab4ad9 8 My_settings can be used to set project settings inside the mbed online IDE
Pokitto 1:9e3293ab4ad9 9 */
Pokitto 1:9e3293ab4ad9 10 /**************************************************************************/
Pokitto 1:9e3293ab4ad9 11
Pokitto 1:9e3293ab4ad9 12 #ifndef MY_SETTINGS_H
Pokitto 1:9e3293ab4ad9 13 #define MY_SETTINGS_H
Pokitto 1:9e3293ab4ad9 14
Pokitto 3:53db531e03aa 15 #define PROJ_HIRES 0 // 1 = high resolution (220x176) , 0 = low resolution fast mode (110x88)
Pokitto 3:53db531e03aa 16 #define PROJ_ENABLE_SOUND 1 // 0 = all sound functions disabled
Pokitto 3:53db531e03aa 17 #define PROJ_STREAMING_MUSIC 1 // 1 = enable streaming music from SD card
Pokitto 8:809b1982b4ae 18 #define PROJ_AUD_FREQ 16000
Pokitto 8:809b1982b4ae 19 #define PROJ_STREAM_TO_DAC 0 // 1 use DAC for stream, 0 = use PWM for stream
Pokitto 4:1b2348ec80ad 20 #define PROJ_GBSOUND 0 // 1 = use Gamebuino-compatible sound interrupt (choose this or the one below)
Pokitto 3:53db531e03aa 21 #define PROJ_ENABLE_SYNTH 0 // 1 = use Rboy-compatible sound interrupt
Pokitto 3:53db531e03aa 22 #define PROJ_GAMEBUINO 0 // 1 if you are making a Gamebuino-based graphics mode (84x48)
Pokitto 1:9e3293ab4ad9 23
Pokitto 8:809b1982b4ae 24
Pokitto 8:809b1982b4ae 25 #endif