This commit is contained in:
geeksville
2020-07-07 10:01:19 -07:00
parent 94c5bd41f2
commit e001ffaf96
2 changed files with 2 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ interface IMeshService {
/// 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
/// Returns true if the device address actually changed, or false if no change was needed
boolean setDeviceAddress(String deviceAddr);
/// Get basic device hardware info about our connected radio. Will never return NULL. Will throw

View File

@@ -14,5 +14,6 @@ interface IRadioInterfaceService {
/// 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
/// Returns true if the device address actually changed, or false if no change was needed
boolean setDeviceAddress(String deviceAddr);
}