mikrokontrollersystemer-pro.../prosjekt.X/main.c
2024-03-13 10:25:36 +01:00

25 lines
406 B
C

/*
* File: main.c
* Author: Sebastian H. Gabrielli
*
* Created on March 6, 2024, 12:34 PM
*/
#define F_CPU 4E6
#include <stdio.h>
#include <stdlib.h>
#include "uart.h"
#include <util/delay.h>
#include <stdint.h>
#include "themistor-temp.h"
int main() {
init_uart((uint16_t)9600);
stdout = &USART_stream;
while (1) {
printf("Hello, world!\n");
_delay_ms(500);
}
}