diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-09-22 23:40:06 -0400 |
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-09-22 23:40:06 -0400 |
| commit | 73a76acef4aa14b042c9c56eef0fd19164afff42 (patch) | |
| tree | f9e173aed8bfe646a54555441dae5bbbf3c1090e /project/Core/Src/Activties/activity4.c | |
| parent | 158dd4d597ebd2ccfd97c43aac699899144fa31f (diff) | |
| download | 340-repo-Sowgro-73a76acef4aa14b042c9c56eef0fd19164afff42.tar.gz 340-repo-Sowgro-73a76acef4aa14b042c9c56eef0fd19164afff42.tar.bz2 340-repo-Sowgro-73a76acef4aa14b042c9c56eef0fd19164afff42.zip | |
Submit endian converters
Diffstat (limited to 'project/Core/Src/Activties/activity4.c')
| -rw-r--r-- | project/Core/Src/Activties/activity4.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/project/Core/Src/Activties/activity4.c b/project/Core/Src/Activties/activity4.c deleted file mode 100644 index c6b9b22..0000000 --- a/project/Core/Src/Activties/activity4.c +++ /dev/null @@ -1,26 +0,0 @@ -/* - * activity4.c - * - * Created on: Sep 16, 2025 - * Author: sowgro - */ - -#include "song.h" -#include <printf.h> - -typedef struct { - char chunk_type[4]; - unsigned int length; - unsigned short format; - unsigned short ntrcks; - unsigned short division; -} header; - -void run() { - header* p_header; - - p_header = (header *) (get_song(0).p_song); - - printf("type: %s, length: %u, format: %u, trackCount: %u, division: %u\r\n", p_header->chunk_type, p_header->length, p_header->format, p_header->ntrcks, p_header->division); -} - |
