mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
MDC RX
This commit is contained in:
parent
7a6a1d7c3d
commit
58aa8f0c44
2 changed files with 17 additions and 4 deletions
|
@ -126,7 +126,7 @@
|
|||
<workItem from="1701413653518" duration="3544000" />
|
||||
<workItem from="1701430185864" duration="10115000" />
|
||||
<workItem from="1701559895523" duration="22519000" />
|
||||
<workItem from="1701678199532" duration="12919000" />
|
||||
<workItem from="1701678199532" duration="13406000" />
|
||||
</task>
|
||||
<task id="LOCAL-00001" summary="bug fix">
|
||||
<created>1701136012311</created>
|
||||
|
@ -415,7 +415,21 @@
|
|||
<option name="project" value="LOCAL" />
|
||||
<updated>1701692190748</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="42" />
|
||||
<task id="LOCAL-00042" summary="MDC RX">
|
||||
<created>1701692299182</created>
|
||||
<option name="number" value="00042" />
|
||||
<option name="presentableId" value="LOCAL-00042" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1701692299182</updated>
|
||||
</task>
|
||||
<task id="LOCAL-00043" summary="MDC RX">
|
||||
<created>1701692636883</created>
|
||||
<option name="number" value="00043" />
|
||||
<option name="presentableId" value="LOCAL-00043" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1701692636883</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="44" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
|
|
|
@ -1664,8 +1664,7 @@ if( gIsInSubMenu && edit_index >= 0){
|
|||
if (bKeyPressed && edit_index < 4 ) {
|
||||
char c = edit[edit_index] + Direction;
|
||||
if(c<'0')c='F';
|
||||
else if(c>'9')c='A';
|
||||
else if(c<'A')c='9';
|
||||
else if(c>'9'&&c<'A')c='A';
|
||||
else if(c>'F')c='0';
|
||||
edit[edit_index]=c;
|
||||
gRequestDisplayScreen = DISPLAY_MENU;
|
||||
|
|
Loading…
Reference in a new issue