2024-03-06 11:34:22 +00:00
|
|
|
/*
|
|
|
|
|
* File: main.c
|
2024-03-13 11:03:40 +00:00
|
|
|
* Author: Sebastian H. Gabrielli, Helle Augland Grasmo
|
2024-03-06 11:34:22 +00:00
|
|
|
*
|
|
|
|
|
* Created on March 6, 2024, 12:34 PM
|
|
|
|
|
*/
|
2024-03-13 11:03:40 +00:00
|
|
|
|
2024-03-06 14:49:48 +00:00
|
|
|
|
|
|
|
|
#include "eeprom.h"
|
2024-03-06 11:34:22 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2024-03-06 13:49:16 +00:00
|
|
|
#define F_CPU 4E6
|
|
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
|
}
|
2024-03-06 11:34:22 +00:00
|
|
|
}
|
|
|
|
|
|