From 0ff718e7cd7159c30636aa323a666ac1af684f63 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sun, 31 Aug 2025 13:25:35 -0400 Subject: Setup project --- project/Core/Inc/song.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 project/Core/Inc/song.h (limited to 'project/Core/Inc/song.h') 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 + +// 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_ */ -- cgit v1.2.3