From 027edb9abab63d7de582ebf04e2de3d09e0313d2 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Sat, 24 May 2025 17:26:59 +0200 Subject: [PATCH] removed waiting time between sending messages. now a message can be send after every interrupt. --- avr/modules/uart_hw/comonuart0.asm | 2 +- avr/modules/uart_hw/ttyonuart1.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/avr/modules/uart_hw/comonuart0.asm b/avr/modules/uart_hw/comonuart0.asm index 96c43a8..f4305da 100644 --- a/avr/modules/uart_hw/comonuart0.asm +++ b/avr/modules/uart_hw/comonuart0.asm @@ -10,7 +10,7 @@ .equ COMONUART0_IFACENUM = 1 .equ COMONUART0_READ_TIMEOUT = 3 -.equ COMONUART0_MSG_INTERVAL = 1 +.equ COMONUART0_MSG_INTERVAL = 0 diff --git a/avr/modules/uart_hw/ttyonuart1.asm b/avr/modules/uart_hw/ttyonuart1.asm index 2e436ea..2185ad2 100644 --- a/avr/modules/uart_hw/ttyonuart1.asm +++ b/avr/modules/uart_hw/ttyonuart1.asm @@ -9,7 +9,7 @@ .equ TTYONUART1_SKIPTIME = 2 -.equ TTYONUART1_MSG_INTERVAL = 2 +.equ TTYONUART1_MSG_INTERVAL = 0 .equ TTYONUART1_IFACENUM = 2