summaryrefslogtreecommitdiff
path: root/project/Core/Inc/Project/song.h
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-09-02 14:45:40 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-09-02 14:45:40 -0400
commite3a880051ccf1ba9a16fd9cf031b7386b2533bf1 (patch)
tree96a096b2a668bf7b7929385ebb54c1a3cbd1b9d2 /project/Core/Inc/Project/song.h
parent0ff718e7cd7159c30636aa323a666ac1af684f63 (diff)
download340-repo-Sowgro-e3a880051ccf1ba9a16fd9cf031b7386b2533bf1.tar.gz
340-repo-Sowgro-e3a880051ccf1ba9a16fd9cf031b7386b2533bf1.tar.bz2
340-repo-Sowgro-e3a880051ccf1ba9a16fd9cf031b7386b2533bf1.zip
Organized project
Diffstat (limited to 'project/Core/Inc/Project/song.h')
-rw-r--r--project/Core/Inc/Project/song.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/project/Core/Inc/Project/song.h b/project/Core/Inc/Project/song.h
new file mode 100644
index 0000000..3b99388
--- /dev/null
+++ b/project/Core/Inc/Project/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_ */