20 lines
319 B
C
20 lines
319 B
C
//
|
|
// Created by servostar on 27.10.23.
|
|
//
|
|
|
|
#ifndef ARDUINO_PRELUDE_H
|
|
#define ARDUINO_PRELUDE_H
|
|
|
|
// set clock frequency to 16MHz
|
|
#define F_CPU 16000000UL
|
|
|
|
#include "avr/io.h"
|
|
#include "avr/interrupt.h"
|
|
#include "util/delay.h"
|
|
|
|
// custom header files
|
|
#include "bits.h"
|
|
#include "interrupt.h"
|
|
|
|
#endif //ARDUINO_PRELUDE_H
|