summaryrefslogtreecommitdiff
path: root/altosui/AltosBTDevice.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-08-28 15:50:30 -0700
committerKeith Packard <keithp@keithp.com>2011-08-28 15:50:30 -0700
commit31e3255b6cbfaf95c0e97e2d1ec8de72f845994c (patch)
tree7213069af129b6b29bc59d48ce5c1e3f336537c9 /altosui/AltosBTDevice.java
parentcf72c2f5a69a736c28a9b63e124d510ef41a9f5d (diff)
altosui: Report error message back from libaltos
This includes changing all of the error dialogs to show the error message rather than just the file name. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosBTDevice.java')
-rw-r--r--altosui/AltosBTDevice.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/altosui/AltosBTDevice.java b/altosui/AltosBTDevice.java
index 7a876c25..55b8f8fc 100644
--- a/altosui/AltosBTDevice.java
+++ b/altosui/AltosBTDevice.java
@@ -42,6 +42,13 @@ public class AltosBTDevice extends altos_bt_device implements AltosDevice {
return getAddr();
}
+ public String getErrorString() {
+ altos_error error = new altos_error();
+
+ libaltos.altos_get_last_error(error);
+ return String.format("%s (%d)", error.getString(), error.getCode());
+ }
+
public int getSerial() {
String name = getName();
if (name == null)