Update TODO

This commit is contained in:
Martin Lund 2022-07-14 11:13:22 +02:00
parent 98db32b251
commit 00ae3b2fbd
2 changed files with 10 additions and 2 deletions

2
TODO
View file

@ -1,8 +1,6 @@
* Improve error/warning messaging when parsing configuration file
* Refactor and consolidate arbitrary set speed function into one file for all platforms
* Consider reworking line toggle and line pulse featueres in case requests are made to apply them to more lines:
ctrl-t g Toggle serial line

View file

@ -120,3 +120,13 @@ long string_to_long(char *string)
return result;
}
int ctrl_key_code(unsigned char key)
{
if ((key >= 'a') && (key <= 'z'))
{
return key & ~0x60;
}
return -1;
}