Add UART functionality #11
No reviewers
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
Mikrokontrollersystemer-gruppe-4/mikrokontrollersystemer-prosjekt!11
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "add-uart"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +1,25 @@#include "uart.h"void init_uart(uint16_t baud) {Description
@ -0,0 +11,4 @@USART3.CTRLB |= USART_TXEN_bm;}void USART3_sendChar(char c) {description
@ -0,0 +19,4 @@}int USART3_printChar(char c, FILE *stream) {description