33 lines
527 B
C
33 lines
527 B
C
/*
|
|
* File: main.c
|
|
* Author: Sebastian H. Gabrielli
|
|
*
|
|
* Created on March 6, 2024, 12:34 PM
|
|
*/
|
|
/*
|
|
* File: main.c
|
|
* Author: athamantis
|
|
*
|
|
* Created on 01 March 2024, 10:34
|
|
*/
|
|
|
|
#include "eeprom.h"
|
|
#include <avr/io.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#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){
|
|
}
|
|
}
|
|
|