11 lines
178 B
C
11 lines
178 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
void chirp_init();
|
|
|
|
void chirp_play(const char* new_song, const bool lock);
|
|
|
|
int32_t interpret_next_token(uint8_t* buffer);
|
|
|
|
void chirp_stop();
|