PlaySFX (sound effect from Flash) example

Dependencies:   PokittoLib

Committer:
Pokitto
Date:
Fri Apr 05 11:18:51 2019 +0000
Revision:
19:64f88ef5ef07
Parent:
18:b5f252ba0083
Added pure polling to buttons as an example

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 4:7bd192389df1 1
Pokitto 18:b5f252ba0083 2 #ifndef MY_SETTINGS_H
Pokitto 18:b5f252ba0083 3 #define MY_SETTINGS_H
Pokitto 4:7bd192389df1 4
Pokitto 18:b5f252ba0083 5 #define PROJ_ENABLE_SOUND 1 // 0 = all sound functions disabled
Pokitto 18:b5f252ba0083 6 #define PROJ_STREAMING_MUSIC 1
Pokitto 18:b5f252ba0083 7 //#define PROJ_HIGH_RAM HIGH_RAM_MUSIC // put music buffers in SRAM1/2
Pokitto 18:b5f252ba0083 8 //#define PROJ_SDFS_STREAMING
Pokitto 18:b5f252ba0083 9 #define PROJ_AUD_FREQ 8000
Pokitto 19:64f88ef5ef07 10 //
Pokitto 19:64f88ef5ef07 11 #define PROJ_BUTTONS_POLLING_ONLY //use only polling (no interrupts) for buttons
Pokitto 4:7bd192389df1 12
Pokitto 18:b5f252ba0083 13 #endif