]> oss.titaniummirror.com Git - rgblamp.git/blobdiff - btn.h
Fix led_get(); reduce code size
[rgblamp.git] / btn.h
diff --git a/btn.h b/btn.h
index 093298bb86c66b0134bf63396e62bf2fe0b31652..c4263d5c00400408531373538303c0ea743c10be 100644 (file)
--- a/btn.h
+++ b/btn.h
@@ -21,16 +21,17 @@ enum {
   BTN_PB_DOWN = 0,
   BTN_PB_UP,
 
-  BTN_RS_OFF = 0,
+  BTN_RS_NONE = 0,
   BTN_RS_LEFT,
   BTN_RS_RIGHT,
+  BTN_RS_OFF,
 };
 
 /* Read the current state of the pushbutton */
-#define btn_pb() (RB0)
+#define btn_pb() (RB1)
 
 /* Read the current state of the rocker switch */
-#define btn_rs() (RB4 + ((unsigned char)RB5 << 1))
+#define btn_rs() (RB2 + ((unsigned char)RB4 << 1))
 
 /* Enable the pushbutton from user code */
 void btn_pben();