/* * MIDI_Note_List.h * * Created: Sat Jan 15 2022 16:13:47 * Author Chris */ #ifndef MIDI_NOTE_LIST_H_ #define MIDI_NOTE_LIST_H_ // ============================================================================================ // Includes #include #include "pico/types.h" // ============================================================================================ // Defines #define MIDI_NOTE_LIST_LENGTH 128 // ============================================================================================ // Datatypes typedef struct { char Tone_Name[2]; int8_t Octave; float Frequency; } Note_Entry_s; extern const Note_Entry_s _MIDI_Note_List[MIDI_NOTE_LIST_LENGTH]; // ============================================================================================ // Function Declarations #endif /* MIDI_NOTE_LIST_H_ */