File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
libraries/Bluefruit52Lib/src/services Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 54
54
ln -s $GITHUB_WORKSPACE $HOME/$BSP_PATH/$BSP_VERSION
55
55
56
56
# Install library dependency
57
- arduino-cli lib install "Adafruit AHRS" "Adafruit APDS9960 Library" "Adafruit Arcada Library" "Adafruit BMP280 Library" "Adafruit Circuit Playground" "Adafruit EPD" "Adafruit GFX Library" "Adafruit HX8357 Library" "Adafruit ILI9341" "Adafruit LIS3MDL" "Adafruit LSM6DS" "Adafruit NeoPixel" "Adafruit NeoMatrix" "Adafruit Sensor Calibration" "Adafruit SHT31 Library" "Adafruit SSD1306" "Adafruit ST7735 and ST7789 Library" "SdFat - Adafruit Fork"
57
+ arduino-cli lib install "Adafruit AHRS" "Adafruit APDS9960 Library" "Adafruit Arcada Library" "Adafruit BMP280 Library" "Adafruit Circuit Playground" "Adafruit EPD" "Adafruit GFX Library" "Adafruit HX8357 Library" "Adafruit ILI9341" "Adafruit LIS3MDL" "Adafruit LSM6DS" "Adafruit NeoPixel" "Adafruit NeoMatrix" "Adafruit Sensor Calibration" "Adafruit SHT31 Library" "Adafruit SSD1306" "Adafruit ST7735 and ST7789 Library" "MIDI Library" " SdFat - Adafruit Fork"
58
58
59
- # TODO update to support MIDI version 5 later on
60
- arduino-cli lib install "MIDI Library"@4.3.1
61
-
62
59
# TODO use firmata master to prevent build error with gcc v9 (should be remove after 2.5.9 is released)
63
60
# https://github.com/firmata/arduino/pull/438
64
61
git clone --depth 1 https://github.com/firmata/arduino.git $HOME/Arduino/libraries/firmata
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ err_t BLEMidi::begin(void)
161
161
return ERROR_NONE;
162
162
}
163
163
164
- bool BLEMidi::beginTransmission (MIDI_NAMESPACE::MidiType type)
164
+ bool BLEMidi::beginTransmission (uint8_t type)
165
165
{
166
166
return true ;
167
167
};
Original file line number Diff line number Diff line change 35
35
#ifndef BLEMIDI_H_
36
36
#define BLEMIDI_H_
37
37
38
- #include < MIDI.h>
39
-
40
38
#include " bluefruit_common.h"
41
39
#include " utility/adafruit_fifo.h"
42
40
@@ -76,7 +74,7 @@ class BLEMidi: public BLEService, public Stream
76
74
void setWriteCallback (midi_write_cb_t fp);
77
75
void autoMIDIread (void * midi_obj);
78
76
79
- bool beginTransmission (MIDI_NAMESPACE::MidiType type);
77
+ bool beginTransmission (uint8_t type);
80
78
void endTransmission ();
81
79
82
80
// Stream API for MIDI Interface
You can’t perform that action at this time.
0 commit comments