Issue
Looking in the code, the RZBCentralManager does not implement the CBPeripheralDelegate method:
- (void)peripheralIsReadyToSendWriteWithoutResponse:(CBPeripheral *)peripheral
which is normally where one would implement a method like sendNextChunk() if not needing a response first.
So I'm wondering how to write data without having to wait for a response. I'm working on a project where that's what the peripheral expects.
Does anybody know or do I need to fork the repo?