|
@@ -57,7 +57,11 @@ along with this program. If not, see <http:
|
|
* The usual Caps Lock position is C4-6, so the address is
|
|
* The usual Caps Lock position is C4-6, so the address is
|
|
* 0x24 + (4-1)*0x10 + (8-1) = 0x59 */
|
|
* 0x24 + (4-1)*0x10 + (8-1) = 0x59 */
|
|
#if !defined(CAPS_LOCK_LED_ADDRESS)
|
|
#if !defined(CAPS_LOCK_LED_ADDRESS)
|
|
-#define CAPS_LOCK_LED_ADDRESS 0x59
|
|
+#define CAPS_LOCK_LED_ADDRESS 0x46
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#if !defined(NUM_LOCK_LED_ADDRESS)
|
|
|
|
+#define NUM_LOCK_LED_ADDRESS 0x85
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
|
|
@@ -85,12 +89,21 @@ uint8_t full_page[0xB4+1] = {0};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
+
|
|
const uint8_t is31_ic60_leds_mask[0x12] = {
|
|
const uint8_t is31_ic60_leds_mask[0x12] = {
|
|
0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF,
|
|
0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF,
|
|
0x00, 0xFF, 0x00, 0xFF, 0x00, 0x7F, 0x00, 0x00, 0x00
|
|
0x00, 0xFF, 0x00, 0xFF, 0x00, 0x7F, 0x00, 0x00, 0x00
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+
|
|
|
|
+const uint8_t pwm_levels[5] = {
|
|
|
|
+ 0x00, 0x16, 0x4E, 0xA1, 0xFF
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+uint8_t pwm_reg_array[9] = {0};
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
* communication functions
|
|
* communication functions
|
|
* ============================ */
|
|
* ============================ */
|
|
@@ -109,6 +122,7 @@ msg_t is31_write_register(uint8_t page, uint8_t reg, uint8_t data) {
|
|
is31_select_page(page);
|
|
is31_select_page(page);
|
|
tx[0] = reg;
|
|
tx[0] = reg;
|
|
tx[1] = data;
|
|
tx[1] = data;
|
|
|
|
+ xprintf("page display: %X\n", page);
|
|
return i2cMasterTransmitTimeout(&I2CD1, IS31_ADDR_DEFAULT, tx, 2, NULL, 0, US2ST(IS31_TIMEOUT));
|
|
return i2cMasterTransmitTimeout(&I2CD1, IS31_ADDR_DEFAULT, tx, 2, NULL, 0, US2ST(IS31_TIMEOUT));
|
|
}
|
|
}
|
|
|
|
|
|
@@ -160,98 +174,267 @@ static THD_FUNCTION(LEDthread, arg) {
|
|
(void)arg;
|
|
(void)arg;
|
|
chRegSetThreadName("LEDthread");
|
|
chRegSetThreadName("LEDthread");
|
|
|
|
|
|
- uint8_t i;
|
|
+ uint8_t i, page;
|
|
- uint8_t temp, pwm;
|
|
+
|
|
- uint8_t save_page, save_breath1, save_breath2;
|
|
+
|
|
|
|
+ uint8_t backlight_status, lock_status, led_step, active_layer;
|
|
|
|
+ uint8_t led_control_reg[0x13] = {0};
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ uint8_t temp, msg_type, msg_led;
|
|
|
|
+ msg_t msg;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ uint8_t page, save_page, save_breath1, save_breath2;
|
|
msg_t msg, retval;
|
|
msg_t msg, retval;
|
|
|
|
+*/
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+backlight_status = 0;
|
|
|
|
+lock_status = 0;
|
|
|
|
+led_step = 4;
|
|
|
|
+active_layer = 0;
|
|
|
|
|
|
while(true) {
|
|
while(true) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
chMBFetch(&led_mailbox, &msg, TIME_INFINITE);
|
|
chMBFetch(&led_mailbox, &msg, TIME_INFINITE);
|
|
|
|
+ msg_type = (msg >> 8) & 0xFF;
|
|
|
|
+ msg_led = (msg) & 0xFF;
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
xprintf("--------------------\n");
|
|
xprintf("--------------------\n");
|
|
- xprintf("mailbox fetch\ntemp: %X - msg: %X\n", temp, msg);
|
|
+ xprintf("mailbox fetch\nmsg: %X\n", msg);
|
|
- if (msg < 8) {
|
|
+ xprintf("type: %X - led: %X\n", msg_type, msg_led);
|
|
-
|
|
+ switch (msg_type){
|
|
-
|
|
+ case KEY_LIGHT:
|
|
- is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &temp);
|
|
+
|
|
- chThdSleepMilliseconds(1);
|
|
+ break;
|
|
-
|
|
+
|
|
- xprintf("Layer: post-read\ntemp: %X\n", temp);
|
|
+ case TOGGLE_LED:
|
|
- if(temp == msg) {
|
|
+
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, 0);
|
|
+
|
|
- } else {
|
|
+ set_led_bit(led_control_reg, msg_led, 1);
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, msg);
|
|
+
|
|
- }
|
|
+ is31_write_data (7, led_control_reg, 0x12+1);
|
|
- xprintf("Layer: post-change\ntemp: %X\n", temp);
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, 7);
|
|
-
|
|
+ active_layer = 7;
|
|
- } else {
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &temp);
|
|
-
|
|
+ xprintf("page display: %X\n", temp);
|
|
- switch(msg) {
|
|
+ break;
|
|
-
|
|
+
|
|
-
|
|
+ case TOGGLE_ALL:
|
|
- case LED_MSG_SLEEP_LED_ON:
|
|
+ xprintf("TOGGLE_ALL\n");
|
|
-
|
|
+
|
|
- is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &save_page);
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &temp);
|
|
- is31_read_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, &save_breath1);
|
|
+
|
|
- is31_read_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, &save_breath2);
|
|
+ xprintf("temp: %X\n", temp);
|
|
-
|
|
+
|
|
- is31_write_register(6, BREATHE_LED_ADDRESS, 0xFF);
|
|
+ if(temp == 1) {
|
|
- is31_write_register(7, BREATHE_LED_ADDRESS, 0x00);
|
|
+ xprintf("page display true: %X\n", temp);
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, (6<<4)|6);
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, 0);
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, IS31_REG_BREATHCTRL2_ENABLE|3);
|
|
+ } else {
|
|
- retval = MSG_TIMEOUT;
|
|
+ xprintf("page display false: %X\n", temp);
|
|
- temp = 6;
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, 1);
|
|
- while(retval == MSG_TIMEOUT) {
|
|
+ }
|
|
-
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &temp);
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, temp);
|
|
+ xprintf("page display: %X\n", temp);
|
|
- temp = (temp == 6 ? 7 : 6);
|
|
+ break;
|
|
-
|
|
+
|
|
- retval = chMBFetch(&led_mailbox, &msg, MS2ST(temp == 6 ? 4000 : 6000));
|
|
+ case TOGGLE_BACKLIGHT:
|
|
|
|
+
|
|
|
|
+ backlight_status ^= 1;
|
|
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &temp);
|
|
|
|
+ active_layer = temp;
|
|
|
|
+
|
|
|
|
+ page = backlight_status == 0 ? 0 : active_layer;
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, page);
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case TOGGLE_LAYER_LEDS:
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &temp);
|
|
|
|
+
|
|
|
|
+ if(temp == msg_led) {
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, 7);
|
|
|
|
+ active_layer = 7;
|
|
|
|
+ } else {
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, msg_led);
|
|
|
|
+ active_layer = msg_led;
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case TOGGLE_LOCK_LED:
|
|
|
|
+
|
|
|
|
+ lock_status ^= msg_led;
|
|
|
|
+ set_lock_leds(led_control_reg, lock_status);
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case MODE_BREATH:
|
|
|
|
+ break;
|
|
|
|
+ case STEP_BRIGHTNESS:
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if (msg_led == 0) {
|
|
|
|
+ if (led_step == 0) {
|
|
|
|
+ led_step = 4;
|
|
|
|
+ } else {
|
|
|
|
+ led_step--;
|
|
}
|
|
}
|
|
-
|
|
+ } else {
|
|
- chThdSleepMilliseconds(3000);
|
|
+ if (led_step == 4) {
|
|
-
|
|
+ led_step = 0;
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, save_breath1);
|
|
+ } else {
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, save_breath2);
|
|
+ led_step++;
|
|
- is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, save_page);
|
|
+ }
|
|
- break;
|
|
+ }
|
|
- case LED_MSG_SLEEP_LED_OFF:
|
|
+
|
|
-
|
|
+
|
|
- break;
|
|
+
|
|
- default:
|
|
+ for(i=1; i<9; i++) {
|
|
- if(msg >= 0x24) {
|
|
+ pwm_reg_array[i]=pwm_levels[led_step];
|
|
- xprintf("Power pre-read\ntemp: %X - msg: %X - pwm: %X\n", temp, msg, pwm);
|
|
+ }
|
|
|
|
+ for(i=0; i<8; i++) {
|
|
|
|
+ pwm_reg_array[0] = 0x24 + (i * 0x10);
|
|
|
|
+ is31_write_data(0, pwm_reg_array, 9);
|
|
|
|
+ chThdSleepMilliseconds(5);
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, &save_page);
|
|
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, &save_breath1);
|
|
|
|
+ is31_read_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, &save_breath2);
|
|
|
|
+
|
|
|
|
+ is31_write_register(6, BREATHE_LED_ADDRESS, 0xFF);
|
|
|
|
+ is31_write_register(7, BREATHE_LED_ADDRESS, 0x00);
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, (6<<4)|6);
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, IS31_REG_BREATHCTRL2_ENABLE|3);
|
|
|
|
+ retval = MSG_TIMEOUT;
|
|
|
|
+ temp = 6;
|
|
|
|
+ while(retval == MSG_TIMEOUT) {
|
|
|
|
+
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, temp);
|
|
|
|
+ temp = (temp == 6 ? 7 : 6);
|
|
|
|
+
|
|
|
|
+ retval = chMBFetch(&led_mailbox, &msg, MS2ST(temp == 6 ? 4000 : 6000));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ chThdSleepMilliseconds(3000);
|
|
|
|
+
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, save_breath1);
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, save_breath2);
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, save_page);
|
|
|
|
+ break;
|
|
|
|
+ case LED_MSG_SLEEP_LED_OFF:
|
|
|
|
+
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if (msg == 0x59 || msg == 0x84) {
|
|
|
|
+
|
|
|
|
+ for (i=0,i<8,i++) {
|
|
is31_read_register(0, msg, &temp);
|
|
is31_read_register(0, msg, &temp);
|
|
- chThdSleepMilliseconds(10);
|
|
|
|
- xprintf("Post-read\ntemp: %X - msg: %X - pwm: %X\n", temp, msg, pwm);
|
|
|
|
- chThdSleepMilliseconds(10);
|
|
|
|
pwm = (temp > 0x00 ? 0x00 : 0xFF);
|
|
pwm = (temp > 0x00 ? 0x00 : 0xFF);
|
|
- xprintf("pwm after: %X\n", pwm);
|
|
+ is31_write_register(i,msg,pwm);
|
|
- chThdSleepMilliseconds(10);
|
|
+ }
|
|
- for(i=0; i<8; i++) {
|
|
+
|
|
- is31_write_register(i, msg, pwm);
|
|
+ } else if(msg >= 0x24) {
|
|
- }
|
|
+ xprintf("Power pre-read\ntemp: %X - msg: %X - pwm: %X\n", temp, msg, pwm);
|
|
- xprintf("Power post-change\ntemp: %X - msg: %X - pwm: %X\n", temp, msg, pwm);
|
|
+ is31_read_register(7, msg, &temp);
|
|
- chThdSleepMilliseconds(10);
|
|
+ xprintf("Post-read\ntemp: %X - msg: %X - pwm: %X\n", temp, msg, pwm);
|
|
|
|
+ if (msg == active_led) {
|
|
|
|
+
|
|
|
|
+ pwm = (temp > 0x00 ? 0x00 : 0xFF);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ is31_write_register(7, msg, pwm);
|
|
|
|
+ } else {
|
|
|
|
+ is31_write_register(7, active_led, 0x00);
|
|
|
|
+ is31_write_register(7, msg, 0xFF);
|
|
|
|
+ }
|
|
|
|
+ xprintf("Power post-change\ntemp: %X - msg: %X - pwm: %X\n", temp, msg, pwm);
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_PICTDISP, 7);
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
- }
|
|
+*/
|
|
}
|
|
}
|
|
xprintf("--------------------\n");
|
|
xprintf("--------------------\n");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ * led bit processing
|
|
|
|
+ * ======================== */
|
|
|
|
+void set_led_bit (uint8_t *led_control_reg, uint8_t msg_led, uint8_t toggle_on) {
|
|
|
|
+ uint8_t row_byte, column_bit;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ row_byte = ((msg_led / 10) % 10 - 1 ) * 2 + 1;
|
|
|
|
+ column_bit = 1<<(msg_led % 10 - 1);
|
|
|
|
+
|
|
|
|
+ if (toggle_on) {
|
|
|
|
+ led_control_reg[row_byte] |= 1<<(column_bit);
|
|
|
|
+ } else {
|
|
|
|
+ led_control_reg[row_byte] &= ~1<<(column_bit);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void set_lock_leds(uint8_t *led_control_reg, uint8_t lock_status) {
|
|
|
|
+ uint8_t i;
|
|
|
|
+
|
|
|
|
+ switch (lock_status) {
|
|
|
|
+ case 1:
|
|
|
|
+ set_led_bit(led_control_reg, CAPS_LOCK_LED_ADDRESS, 1);
|
|
|
|
+ set_led_bit(led_control_reg, NUM_LOCK_LED_ADDRESS, 0);
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ set_led_bit(led_control_reg, CAPS_LOCK_LED_ADDRESS, 0);
|
|
|
|
+ set_led_bit(led_control_reg, NUM_LOCK_LED_ADDRESS, 1);
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ set_led_bit(led_control_reg, NUM_LOCK_LED_ADDRESS, 1);
|
|
|
|
+ set_led_bit(led_control_reg, CAPS_LOCK_LED_ADDRESS, 1);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for(i=1; i<8; i++) {
|
|
|
|
+ is31_write_data (i, led_control_reg, 0x12+1);
|
|
|
|
+ chThdSleepMilliseconds(5);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void write_led_page (uint8_t page, const uint8_t *led_array, uint8_t led_count) {
|
|
|
|
+
|
|
|
|
+ uint8_t i;
|
|
|
|
+ uint8_t row, col;
|
|
|
|
+ uint8_t temp_control_reg[0x13] = {0};
|
|
|
|
+ xprintf("-------------\n");
|
|
|
|
+ xprintf("write page %X\n", page);
|
|
|
|
+
|
|
|
|
+ for(i=0;i<led_count;i++){
|
|
|
|
+ row = ((led_array[i] / 10) % 10 - 1 ) * 2 + 1;
|
|
|
|
+ col = 1<<(led_array[i] % 10 - 1);
|
|
|
|
+
|
|
|
|
+ temp_control_reg[row] |= 1<<(col);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ is31_write_data(page, temp_control_reg, 0x13);
|
|
|
|
+ xprintf("-------------\n");
|
|
|
|
+}
|
|
|
|
|
|
* hook into user keymap
|
|
* hook into user keymap
|
|
* ===================== */
|
|
* ===================== */
|
|
void led_controller_init(void) {
|
|
void led_controller_init(void) {
|
|
uint8_t i;
|
|
uint8_t i;
|
|
|
|
|
|
- xprintf("led_controller_init");
|
|
|
|
|
|
|
|
|
|
|
|
palSetPadMode(GPIOB, 0, PAL_MODE_ALTERNATIVE_2);
|
|
palSetPadMode(GPIOB, 0, PAL_MODE_ALTERNATIVE_2);
|
|
@@ -275,14 +458,18 @@ void led_controller_init(void) {
|
|
is31_write_data(i, full_page, 1+0x12);
|
|
is31_write_data(i, full_page, 1+0x12);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ is31_write_register(IS31_FUNCTIONREG, IS31_REG_DISPLAYOPT, IS31_REG_DISPLAYOPT_INTENSITY_SAME);
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, (3<<4)|3);
|
|
is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL1, (3<<4)|3);
|
|
is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, IS31_REG_BREATHCTRL2_ENABLE|3);
|
|
is31_write_register(IS31_FUNCTIONREG, IS31_REG_BREATHCTRL2, IS31_REG_BREATHCTRL2_ENABLE|3);
|
|
|
|
|
|
-
|
|
+
|
|
- is31_write_register(1, CAPS_LOCK_LED_ADDRESS, 0);
|
|
+
|
|
- is31_write_register(2, CAPS_LOCK_LED_ADDRESS, 0);
|
|
+
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
* a thread, with asynchronous messaging. */
|
|
* a thread, with asynchronous messaging. */
|