(params)
| 52 | this.ble.onCharacteristicValue(characteristic, typedBufferToValue(characteristic.type, params.value)); |
| 53 | } |
| 54 | static onDescriptorValue(params) { |
| 55 | const descriptor = this._findDescriptorByHandle(params.handle); |
| 56 | if (descriptor) |
| 57 | this.ble.onDescriptorValue(descriptor, typedBufferToValue(descriptor.type, params.value)); |
| 58 | } |
| 59 | static onDescriptorWritten(params) { |
| 60 | let descriptor = this._findDescriptorByHandle(params.handle); |
| 61 | if (descriptor) |
nothing calls this directly
no test coverage detected