add accessor for GattCharacteristic::_value

This commit is contained in:
Rohit Grover 2014-06-11 13:53:16 +01:00
parent e41d5ce9cd
commit a0bd121a73

View file

@ -348,6 +348,9 @@ public:
uint16_t getMaxLength(void) const {
return _lenMax;
}
uint8_t *getValuePtr(void) {
return _value;
}
private:
UUID _uuid; /* Characteristic UUID */