- Loop on chirps implemented

This commit is contained in:
2022-12-29 12:22:53 +01:00
parent 5ecb7fd139
commit 1731b4cb03

View File

@@ -144,6 +144,9 @@ int32_t interpret_next_token(uint8_t* buffer) {
param = *++*token; param = *++*token;
if( param >= 48 && param <= 57 ) { tempo = tempos[param - 48] * 10; ++*token; } if( param >= 48 && param <= 57 ) { tempo = tempos[param - 48] * 10; ++*token; }
return 0; return 0;
case '=':
song_ptr = song;
return 0;
case '\0': case '\0':
return -1; return -1;
default: default: