瀏覽代碼

Remove unnecessary variable

old_master
Kai Ryu 9 年之前
父節點
當前提交
2f98eab784
共有 1 個文件被更改,包括 10 次插入9 次删除
  1. 10
    9
      keyboard/staryu/backlight.c

+ 10
- 9
keyboard/staryu/backlight.c 查看文件

0, 16, 128, 255 0, 16, 128, 255
}; };


static uint8_t backlight_mode;
extern backlight_config_t backlight_config;


void backlight_set(uint8_t level) void backlight_set(uint8_t level)
{ {
backlight_mode = level;
switch (level) { switch (level) {
case 1: case 1:
case 2: case 2:


void action_keyevent(keyevent_t event) void action_keyevent(keyevent_t event)
{ {
if (backlight_mode == 7) {
if (event.pressed) {
softpwm_led_decrease_all(32);
if (backlight_config.enable) {
if (backlight_config.level == 7) {
if (event.pressed) {
softpwm_led_decrease_all(32);
}
} }
}
if (backlight_mode == 8) {
if (event.pressed) {
softpwm_led_increase_all(32);
if (backlight_config.level == 8) {
if (event.pressed) {
softpwm_led_increase_all(32);
}
} }
} }
} }