summaryrefslogtreecommitdiff
path: root/project/Core/Inc/song.h
diff options
context:
space:
mode:
Diffstat (limited to 'project/Core/Inc/song.h')
-rw-r--r--project/Core/Inc/song.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/project/Core/Inc/song.h b/project/Core/Inc/song.h
deleted file mode 100644
index 3b99388..0000000
--- a/project/Core/Inc/song.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * 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_ */