mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
Improve error message for unavailable RX characteristic in USB communication
This commit is contained in:
parent
612612795a
commit
c041e05972
1 changed files with 1 additions and 1 deletions
|
|
@ -1196,7 +1196,7 @@ class MeshCoreConnector extends ChangeNotifier {
|
|||
await _usbSerialService.write(data);
|
||||
} else {
|
||||
if (_rxCharacteristic == null) {
|
||||
throw Exception("MeshCore RX characteristic does not support write");
|
||||
throw Exception("MeshCore RX characteristic not available");
|
||||
}
|
||||
// Prefer write without response when supported; fall back to write with response.
|
||||
final properties = _rxCharacteristic!.properties;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue