Update MinSerial.cpp

Add missing commas
This commit is contained in:
ellensp 2023-11-26 23:05:50 +13:00 committed by GitHub
parent 0a86a5f39c
commit 7d334775d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,9 +53,9 @@ struct USARTMin {
0x40004800, // USART3
0x40004C00, // UART4_BASE
0x40005000, // UART5_BASE
0x40011400 // USART6
0x40007800 // UART7_BASE
0x40007C00 // UART8_BASE
0x40011400, // USART6
0x40007800, // UART7_BASE
0x40007C00, // UART8_BASE
0x40011800 // UART9_BASE
};
static USARTMin * regs = (USARTMin*)regsAddr[SERIAL_PORT - 1];