Browse Source

fix:按键控制加减音量bug修复

issu01
Zhangwen 4 months ago
parent
commit
6e1364f5e3
  1. 4
      source/app/task_keystatus.c

4
source/app/task_keystatus.c

@ -80,7 +80,7 @@ void L3_task_keystatus_handler(S_TASK_KEYSTATUS *s)
} }
} }
} }
if (L2_ReadKey1() == Key_Down) else if (L2_ReadKey1() == Key_Down)
{ {
if (s->Key1_handled == 0) if (s->Key1_handled == 0)
{ {
@ -88,7 +88,7 @@ void L3_task_keystatus_handler(S_TASK_KEYSTATUS *s)
L2_WT2605B_VioceUp(); // 音量增加 L2_WT2605B_VioceUp(); // 音量增加
} }
} }
if (L2_ReadKey2() == Key_Down) else if (L2_ReadKey2() == Key_Down)
{ {
if (s->Key2_handled == 0) if (s->Key2_handled == 0)
{ {

Loading…
Cancel
Save