diff options
| author | Mike Beattie <mike@ethernal.org> | 2012-08-28 22:08:19 +1200 | 
|---|---|---|
| committer | Mike Beattie <mike@ethernal.org> | 2012-08-28 22:08:19 +1200 | 
| commit | c6d667a6ac0decfde5bc8a180b14774e9942dd0c (patch) | |
| tree | a3fd1b8e56cd9660d1ad8c12131e7fbb51e74bfd | |
| parent | 5c7370dcd7a65c81a3c903a71167e07cfcbade53 (diff) | |
altosdroid: tidy up old messages
Signed-off-by: Mike Beattie <mike@ethernal.org>
| -rw-r--r-- | altosdroid/src/org/altusmetrum/AltosDroid/AltosDroid.java | 19 | 
1 files changed, 1 insertions, 18 deletions
| diff --git a/altosdroid/src/org/altusmetrum/AltosDroid/AltosDroid.java b/altosdroid/src/org/altusmetrum/AltosDroid/AltosDroid.java index df2263ce..e3e6012e 100644 --- a/altosdroid/src/org/altusmetrum/AltosDroid/AltosDroid.java +++ b/altosdroid/src/org/altusmetrum/AltosDroid/AltosDroid.java @@ -55,10 +55,7 @@ public class AltosDroid extends Activity {  	// Message types received by our Handler  	public static final int MSG_STATE_CHANGE    = 1; -	public static final int MSG_DEVNAME         = 2; -	public static final int MSG_TOAST           = 3; -	public static final int MSG_DEVCONFIG       = 4; -	public static final int MSG_TELEMETRY       = 5; +	public static final int MSG_TELEMETRY       = 2;  	// Intent request codes  	private static final int REQUEST_CONNECT_DEVICE = 1; @@ -112,26 +109,12 @@ public class AltosDroid extends Activity {  					break;  				}  				break; -			case MSG_DEVCONFIG:  			case MSG_TELEMETRY:  				//byte[] buf = (byte[]) msg.obj;  				// construct a string from the buffer  				//String telem = new String(buf);  				//ad.mSerialView.append(telem);  				break; -			case MSG_DEVNAME: -				// save the connected device's name -				ad.mConnectedDeviceName = (String) msg.obj; -				if (ad.mConnectedDeviceName != null) -					Toast.makeText(ad.getApplicationContext(), "Connected to " -							+ ad.mConnectedDeviceName, Toast.LENGTH_SHORT).show(); -				break; -			case MSG_TOAST: -				Toast.makeText( -						ad.getApplicationContext(), -						(String) msg.obj, -						Toast.LENGTH_SHORT).show(); -				break;  			}  		}  	}; | 
