Get the version of the MSX PICO WaveGame firmware Note that WaveGame version 1 is needed
WaveGame version
0: Firmware v1.49 / v2.05 / v2.06
1: Firmware v1.50 / v2.07 and higher
Stop music (actually a 1-second fade out)
| inline void WaveGame_Fade( |
| ) |
Fade out music in xxxx seconds
| sec u8 | Number of seconds to fade out (0-15) |
| inline void WaveGame_PlayOnce( |
| ) |
Play song xxxxxx once (for instance command 01000101 will play 05.wav once)
| song u8 | Song number to play (0-63) |
| inline void WaveGame_PlayLoop( |
| ) |
Play song xxxxxx in a loop (for instance command 10000101 will play 05.wav continuously)
| song u8 | Song number to play (0-63) |
| inline void WaveGame_Play( |
| ) |
Play song xxxxxx (for instance command 10000101 will play 05.wav continuously)
| song u8 | Song number to play (0-63) |
| loop bool | true to play in a loop, false to play once |
Toggle pause
Play pause.wav sound (use 11100000 to continue previous song)
Continue previous song with a 1-second fade in
Next command received will be temporarily stored and executed after the current song stops playing, or already has stopped
| inline void WaveGame_PlayNext( |
| ) |
Play song xxxxxx (for instance command 10000101 will play 05.wav continuously) when current music ends
| song u8 | Song number to play (0-63) |
| loop bool | true to play in a loop, false to play once |