add fixme and todo

This commit is contained in:
liamcottle 2025-02-11 21:49:37 +13:00
parent 8f53e9b849
commit 6f2d4ce1f7

View file

@ -79,6 +79,8 @@ class BleConnection extends Connection {
async write(bytes) {
try {
// fixme: NetworkError: GATT operation already in progress.
// todo: implement mutex to prevent multiple writes when another write is in progress
// we write to the rx characteristic, as that's where the radio reads from
await this.rxCharacteristic.writeValue(bytes);
} catch(e) {