]> git.zerfleddert.de Git - ms2-fixes/commitdiff
replace useless drive inactive toggle with toggle for active high
authorMichael Gernoth <michael@gernoth.net>
Wed, 7 Sep 2011 20:05:25 +0000 (22:05 +0200)
committerMichael Gernoth <michael@gernoth.net>
Wed, 7 Sep 2011 20:05:25 +0000 (22:05 +0200)
MS2Debounce/res/layout/main.xml
MS2Debounce/src/de/rmdir/ms2debounce/DebounceModuleHelper.java
MS2Debounce/src/de/rmdir/ms2debounce/MS2Debounce.java

index 9d3eeae2268d462c6a768993ceacbcfa6e419be2..4538f8db8f1c02e15930b6be1473e68a68cabf50 100644 (file)
@@ -89,6 +89,7 @@
     android:text="0"
     android:enabled="false"
     android:background="@android:drawable/editbox_background"/>
+<!--
 <CheckBox
     android:id="@+id/drive_inactive"
     android:layout_alignBaseline="@id/poll_label"
     android:layout_height="wrap_content"
     android:onClick="toggle_drive_inactive"
     android:text="Drive inactive pins" />
+-->
+<CheckBox
+    android:id="@+id/active_high"
+    android:layout_alignBaseline="@id/poll_label"
+    android:layout_toRightOf="@id/poll_time"
+    android:layout_width="fill_parent"
+    android:layout_height="wrap_content"
+    android:onClick="toggle_active_high"
+    android:text="Active High Logic" />
 <TextView
     android:id="@+id/hw_debounce_label"
     android:layout_width="wrap_content"
index 75be40868906495d231b0a721f71c75950e0f0cc..6234eae8e604cc138395db916c68c82452dac4b1 100644 (file)
@@ -28,7 +28,8 @@ public class DebounceModuleHelper
                setPoll(getSavedPoll());
                setHwDebounce(getSavedHwDebounce());
                setHwDebounceTime(getSavedHwDebounceTime());
-               setDriveInactive(getSavedDriveInactive());
+               //setDriveInactive(getSavedDriveInactive());
+               setActiveHigh(getSavedActiveHigh());
        }
 
        public void loadModule() {
@@ -200,6 +201,20 @@ public class DebounceModuleHelper
                        setValue("drive_inactive_flag", 0);
        }
 
+       public synchronized boolean getActiveHigh() {
+               if (getValue("active_high_flag") == 1)
+                       return true;
+
+               return false;
+       }
+
+       public synchronized void setActiveHigh(boolean enable) {
+               if (enable)
+                       setValue("active_high_flag", 1);
+               else
+                       setValue("active_high_flag", 0);
+       }
+
        public synchronized int getSavedDelay() {
                SharedPreferences settings = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
 
@@ -284,6 +299,20 @@ public class DebounceModuleHelper
                editor.commit();
        }
 
+       public synchronized boolean getSavedActiveHigh() {
+               SharedPreferences settings = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
+
+               return settings.getBoolean("active_high", false);
+       }
+
+       public synchronized void setSavedActiveHigh(boolean enable) {
+               SharedPreferences settings = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
+               SharedPreferences.Editor editor = settings.edit();
+
+               editor.putBoolean("active_high", enable);
+               editor.commit();
+       }
+
        public synchronized boolean is_safe_to_load() {
                SharedPreferences settings = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
                return settings.getBoolean("safe_to_load", false);
index 3763a65ac32aa0ca115c1862aef85cba3eda5946..27508fcaa31343e8140aef0a9e4f305a1a54f57f 100644 (file)
@@ -30,6 +30,7 @@ public class MS2Debounce extends Activity
        private boolean hw_debounce_en;
        private int hw_debounce_time;
        private boolean drive_inactive_en;
+       private boolean active_high_en;
 
        public MS2Debounce()
        {
@@ -130,7 +131,8 @@ public class MS2Debounce extends Activity
                poll_time = module.getPoll();
                hw_debounce_en = module.getHwDebounce();
                hw_debounce_time = module.getHwDebounceTime();
-               drive_inactive_en = module.getDriveInactive();
+               //drive_inactive_en = module.getDriveInactive();
+               active_high_en = module.getActiveHigh();
 
                TextView text = (TextView)findViewById(R.id.text);
                text.setText("Module loaded: " + loaded + "\n" +
@@ -138,7 +140,7 @@ public class MS2Debounce extends Activity
                        "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 + "), drive inactive: " + (drive_inactive_en?"en":"dis") + "abled");
+                       "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()));
@@ -189,9 +191,13 @@ public class MS2Debounce extends Activity
                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 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() {
@@ -222,8 +228,11 @@ public class MS2Debounce extends Activity
                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 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) {
@@ -263,10 +272,16 @@ public class MS2Debounce extends Activity
                module.setSavedHwDebounce(hw_debounce.isChecked());
        }
 
-       public void toggle_drive_inactive(View view) {
-               CheckBox drive_inactive = (CheckBox)view;
+       //public void toggle_drive_inactive(View view) {
+       //      CheckBox drive_inactive = (CheckBox)view;
+
+       //      module.setSavedDriveInactive(drive_inactive.isChecked());
+       //}
+
+       public void toggle_active_high(View view) {
+               CheckBox active_high = (CheckBox)view;
 
-               module.setSavedDriveInactive(drive_inactive.isChecked());
+               module.setSavedActiveHigh(active_high.isChecked());
        }
 
        @Override
Impressum, Datenschutz