fix: add tx queue

This commit is contained in:
2025-11-09 12:15:13 +06:00
parent 06012c613a
commit 5445c27271
7 changed files with 184 additions and 93 deletions

View File

@@ -12,7 +12,7 @@ int rand(void) {
void srand(unsigned int seed) { next = seed; }
uint32_t sys_now(void) { return systick_millis; }
uint32_t sys_now(void) { return millis(); }
sys_prot_t sys_arch_protect(void) {
unsigned int old_mstatus;