I keep getting the following error when trying to create the .bin file:
neptune.cpp: In function 'int main()':
neptune.cpp:903:8: error: 'class daisy:
aisyPetal' has no member named 'InitMidi'
903 | hw.InitMidi();
| ^~~~~~~~
neptune.cpp:904:8: error: 'class daisy:
aisyPetal' has no member named 'midi'
904 | hw.midi.StartReceive();
| ^~~~
neptune.cpp:910:12: error: 'class daisy:
aisyPetal' has no member named 'midi'
910 | hw.midi.Listen();
| ^~~~
neptune.cpp:912:18: error: 'class daisy:
aisyPetal' has no member named 'midi'
912 | while(hw.midi.HasEvents()) // MIDI is not working for some reason, TODO figure out why??
| ^~~~
neptune.cpp:914:34: error: 'class daisy:
aisyPetal' has no member named 'midi'
914 | HandleMidiMessage(hw.midi.PopEvent());
Did anyone face a similar issue, or have any idea how fix it?
neptune.cpp: In function 'int main()':
neptune.cpp:903:8: error: 'class daisy:
903 | hw.InitMidi();
| ^~~~~~~~
neptune.cpp:904:8: error: 'class daisy:
904 | hw.midi.StartReceive();
| ^~~~
neptune.cpp:910:12: error: 'class daisy:
910 | hw.midi.Listen();
| ^~~~
neptune.cpp:912:18: error: 'class daisy:
912 | while(hw.midi.HasEvents()) // MIDI is not working for some reason, TODO figure out why??
| ^~~~
neptune.cpp:914:34: error: 'class daisy:
914 | HandleMidiMessage(hw.midi.PopEvent());
Did anyone face a similar issue, or have any idea how fix it?
