1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/atmega2560: fixed typo in reg definition

This commit is contained in:
Hauke Petersen 2016-03-10 18:01:42 +01:00 committed by kYc0o
parent a2ddb1dd7f
commit 5fc67747e6

View File

@ -70,7 +70,7 @@ typedef struct {
#define MEGA_UART0_BASE ((uint16_t *)(&UCSR0A))
#define MEGA_UART1_BASE ((uint16_t *)(&UCSR1A))
#define MEGA_UART2_BASE ((uint16_t *)(&UCSR2A))
#define MEGA_UART3_BASE ((uint16_t *)(&UCSR2A))
#define MEGA_UART3_BASE ((uint16_t *)(&UCSR3A))
/** @} */
/**