From 06ba9e05c166c48a739683766f09c4abf242fb81 Mon Sep 17 00:00:00 2001 From: sowgro Date: Fri, 17 Oct 2025 22:01:03 -0400 Subject: Complete project --- project/Core/Inc/Project/song_info.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 project/Core/Inc/Project/song_info.h (limited to 'project/Core/Inc/Project') diff --git a/project/Core/Inc/Project/song_info.h b/project/Core/Inc/Project/song_info.h new file mode 100644 index 0000000..fbc5bc2 --- /dev/null +++ b/project/Core/Inc/Project/song_info.h @@ -0,0 +1,19 @@ +/* + * song_info.h + * + * Created on: Oct 15, 2025 + * Author: sowgro + */ + +#ifndef INC_PROJECT_SONG_INFO_H_ +#define INC_PROJECT_SONG_INFO_H_ + +typedef struct { + char *title; + char *copyright; + int tempo; +} song_info_t; + +song_info_t get_song_info(unsigned char *p_song); + +#endif /* INC_PROJECT_SONG_INFO_H_ */ -- cgit v1.2.3