+ @Override
+ public void beforeTextChanged(CharSequence s, int start, int count, int after) {
+ }
+
+ @Override
+ public void onTextChanged(CharSequence s, int start, int before, int count) {
+ }
+ });
+
+ updateUI();
+ }
+
+ private void updateUI() {
+ disableUI();
+
+ // Calling these is expensive, so cache the result...
+ loaded = module.isLoaded();
+ safe_to_load = module.is_safe_to_load();
+ debounce_delay = module.getDelay();
+ settle_time = module.getSettle();
+ poll_time = module.getPoll();
+ hw_debounce_en = module.getHwDebounce();
+ hw_debounce_time = module.getHwDebounceTime();
+ //drive_inactive_en = module.getDriveInactive();
+ active_high_en = module.getActiveHigh();
+
+ TextView text = (TextView)findViewById(R.id.text);
+ text.setText("Module loaded: " + loaded + "\n" +
+ "debounce_delay: " + debounce_delay + "ms\n" +
+ "settle_time: " + settle_time + "us\n" +
+ "poll_time: " + poll_time + "ms\n" +
+ "safe_to_load: " + safe_to_load + " (module loaded by this app)\n" +
+ "hw_debounce: " + (hw_debounce_en?"en":"dis") + "abled, " + ((hw_debounce_time+1)*31) + "us (" + hw_debounce_time + "), active high: " + (active_high_en?"en":"dis") + "abled");
+
+ EditText textDelay = (EditText)findViewById(R.id.debounce_delay);
+ textDelay.setText(Integer.toString(module.getSavedDelay()));
+ textDelay.setEnabled(true);
+
+ EditText textSettle = (EditText)findViewById(R.id.settle_time);
+ textSettle.setText(Integer.toString(module.getSavedSettle()));
+ textSettle.setEnabled(true);
+
+ EditText textPoll = (EditText)findViewById(R.id.poll_time);
+ textPoll.setText(Integer.toString(module.getSavedPoll()));
+ textPoll.setEnabled(true);
+
+ EditText textHwDebounceTime = (EditText)findViewById(R.id.hw_debounce_time);
+ textHwDebounceTime.setText(Integer.toString(module.getSavedHwDebounceTime()));
+ textHwDebounceTime.setEnabled(true);
+
+ Button set = (Button)findViewById(R.id.set);
+ if (loaded) {
+ set.setEnabled(true);
+ } else {
+ set.setEnabled(false);
+ }
+
+ Button load = (Button)findViewById(R.id.load);
+ if (loaded) {
+ load.setEnabled(false);
+ } else {
+ load.setEnabled(true);
+ }
+
+ Button unload = (Button)findViewById(R.id.unload);
+ if (loaded) {
+ unload.setEnabled(true);
+ } else {
+ unload.setEnabled(false);
+ }
+
+ CheckBox on_boot = (CheckBox)findViewById(R.id.on_boot);
+ on_boot.setChecked(module.get_on_boot());
+ if (safe_to_load) {
+ on_boot.setEnabled(true);
+ } else {
+ on_boot.setEnabled(false);
+ }
+
+ CheckBox hw_debounce = (CheckBox)findViewById(R.id.hw_debounce);
+ hw_debounce.setChecked(module.getSavedHwDebounce());
+ hw_debounce.setEnabled(true);
+
+ //CheckBox drive_inactive = (CheckBox)findViewById(R.id.drive_inactive);
+ //drive_inactive.setChecked(module.getSavedDriveInactive());
+ //drive_inactive.setEnabled(true);
+
+ CheckBox active_high = (CheckBox)findViewById(R.id.active_high);
+ active_high.setChecked(module.getSavedActiveHigh());
+ active_high.setEnabled(true);
+ }
+
+ private void disableUI() {
+ EditText textDelay = (EditText)findViewById(R.id.debounce_delay);
+ textDelay.setEnabled(false);
+
+ EditText textSettle = (EditText)findViewById(R.id.settle_time);
+ textSettle.setEnabled(false);
+
+ EditText textPoll = (EditText)findViewById(R.id.poll_time);
+ textPoll.setEnabled(false);
+
+ EditText textHwDebounceTime = (EditText)findViewById(R.id.hw_debounce_time);
+ textHwDebounceTime.setEnabled(false);
+
+ Button set = (Button)findViewById(R.id.set);
+ set.setEnabled(false);
+
+ Button load = (Button)findViewById(R.id.load);
+ load.setEnabled(false);
+
+ Button unload = (Button)findViewById(R.id.unload);
+ unload.setEnabled(false);
+
+ CheckBox on_boot = (CheckBox)findViewById(R.id.on_boot);
+ on_boot.setEnabled(false);
+
+ CheckBox hw_debounce = (CheckBox)findViewById(R.id.hw_debounce);
+ hw_debounce.setEnabled(false);
+
+ //CheckBox drive_inactive = (CheckBox)findViewById(R.id.drive_inactive);
+ //drive_inactive.setEnabled(false);
+
+ CheckBox active_high = (CheckBox)findViewById(R.id.active_high);
+ active_high.setEnabled(false);
+ }
+
+ public void loadModule(View view) {
+ disableUI();