diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-08-31 13:25:35 -0400 |
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-08-31 13:25:35 -0400 |
| commit | 0ff718e7cd7159c30636aa323a666ac1af684f63 (patch) | |
| tree | 247e13a76a15d3f826ba949a5a4d82b79a35e652 /project/Core/Inc/song.h | |
| parent | 0f2ea7deaf0cba2f0ca07f6611c5a9e87d531f5b (diff) | |
| download | 340-repo-Sowgro-0ff718e7cd7159c30636aa323a666ac1af684f63.tar.gz 340-repo-Sowgro-0ff718e7cd7159c30636aa323a666ac1af684f63.tar.bz2 340-repo-Sowgro-0ff718e7cd7159c30636aa323a666ac1af684f63.zip | |
Setup project
Diffstat (limited to 'project/Core/Inc/song.h')
| -rw-r--r-- | project/Core/Inc/song.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/project/Core/Inc/song.h b/project/Core/Inc/song.h new file mode 100644 index 0000000..3b99388 --- /dev/null +++ b/project/Core/Inc/song.h @@ -0,0 +1,23 @@ +/* + * song.h + * + * Created on: May 14, 2022 + * Author: Bruce Herring + * + * DO NOT MODIFY + */ + +#ifndef INC_SONG_H_ +#define INC_SONG_H_ + +#include <stdint.h> + +// A little struct to help make tracking songs easier. +typedef struct { + unsigned char* p_song; + unsigned int size; +}song; + +song get_song (uint8_t); + +#endif /* INC_SONG_H_ */ |
