new cleaner approach of not whacking services seems to aprox work

This commit is contained in:
geeksville 2020-04-20 07:46:06 -07:00
parent dabda9d29e
commit 62a64dd782
5 changed files with 21 additions and 10 deletions

View file

@ -58,6 +58,7 @@ interface IMeshService {
String connectionState();
/// If a macaddress we will try to talk to our device, if null we will be idle.
/// Any current connection will be dropped (even if the device address is the same) before reconnecting.
/// Users should not call this directly, only used internally by the MeshUtil activity
void setDeviceAddress(String deviceAddr);

View file

@ -23,6 +23,7 @@ interface IRadioInterfaceService {
void writeOwner(in byte [] owner);
/// If a macaddress we will try to talk to our device, if null we will be idle.
/// Any current connection will be dropped (even if the device address is the same) before reconnecting.
/// Users should not call this directly, called only by MeshService
void setDeviceAddress(String deviceAddr);
}