Add UART functionality #11
No reviewers
Labels
No Label
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…
Reference in New Issue
Block a user
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