diff --git a/src/hardware/BLEMIDI_ESP32.h b/src/hardware/BLEMIDI_ESP32.h index e1898c7..dc8dc88 100644 --- a/src/hardware/BLEMIDI_ESP32.h +++ b/src/hardware/BLEMIDI_ESP32.h @@ -16,7 +16,7 @@ private: BLEAdvertising *_advertising = nullptr; BLECharacteristic *_characteristic = nullptr; - BLEMIDI_Transport, _Settings> *_bleMidiTransport = nullptr; + BLEMIDI_Transport, _Settings>* _bleMidiTransport = nullptr; template friend class MyServerCallbacks; template friend class MyCharacteristicCallbacks; @@ -168,7 +168,7 @@ bool BLEMIDI_ESP32<_Settings>::begin(const char *deviceName, BLEMIDI_Transport +/*! \brief Create a customer instance for ESP32 named */ #define BLEMIDI_CREATE_CUSTOM_INSTANCE(DeviceName, Name, _Settings) \ BLEMIDI_NAMESPACE::BLEMIDI_Transport, _Settings> BLE##Name(DeviceName); \