mikrokontrollersystemer-pro.../prosjekt.X/main.c

33 lines
527 B
C
Raw Normal View History

2024-03-06 11:34:22 +00:00
/*
* File: main.c
* Author: Sebastian H. Gabrielli
*
* Created on March 6, 2024, 12:34 PM
*/
2024-03-06 13:49:16 +00:00
/*
* File: main.c
* Author: athamantis
*
* Created on 01 March 2024, 10:34
*/
2024-03-06 14:49:48 +00:00
#include "eeprom.h"
2024-03-06 13:49:16 +00:00
#include <avr/io.h>
2024-03-06 11:34:22 +00:00
#include <stdio.h>
#include <stdlib.h>
2024-03-06 13:49:16 +00:00
#include <stdint.h>
#define F_CPU 4E6
#include <util/delay.h>
#include <avr/eeprom.h>
#include <stdbool.h>
#define USART3_BAUD_RATE(BAUD_RATE) ((float)(F_CPU * 64 / (16 *(float) BAUD_RATE)) + 0.5)
#include <string.h>
void main() {
while(1){
}
2024-03-06 11:34:22 +00:00
}