fixed a very stupid bug

This commit is contained in:
Edward Emelianov
2023-10-02 20:37:52 +03:00
parent b20e134180
commit 4d835abe4e
5 changed files with 18 additions and 6 deletions

View File

@@ -133,7 +133,7 @@ int main(void){
#endif
cmd_parser(txt, 0);
}
if(lastTprint - Tms > 249){ // run `sendbuf` each 250ms
if(Tms - lastTprint > 249){ // run `sendbuf` each 250ms
sendbuf();
}
}