Files
ARBKVS/Abgaben/P4/sevenseg.h
2024-01-20 22:27:43 +01:00

12 lines
260 B
C

#ifndef SEVENSEG_H_
#define SEVENSEG_H_
#define F_CPU 16000000UL // 16MHz clock frequency
#include <util/delay.h>
#include <avr/interrupt.h>
#include "avr/io.h"
uint32_t getSystemClock();
void waitFor(uint32_t ms);
void display();
#endif /* SEVENSEG_H_ */