aboutsummaryrefslogtreecommitdiff
path: root/src/peripherals/usart.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/peripherals/usart.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peripherals/usart.ts b/src/peripherals/usart.ts
index b93c0ea..c1d6f13 100644
--- a/src/peripherals/usart.ts
+++ b/src/peripherals/usart.ts
@@ -24,7 +24,7 @@ export const usart0Config: USARTConfig = {
UCSRC: 0xc2,
UBRRL: 0xc4,
UBRRH: 0xc5,
- UDR: 0xc6
+ UDR: 0xc6,
};
export type USARTTransmitCallback = (value: u8) => void;