/* * peripheral.h * * Created: 07.05.2014 14:02:16 * Author: netz */ #ifndef PERIPHERAL_H_ #define PERIPHERAL_H_ #define F_CPU 20000000 #include "io/hardware/portb.hpp" #include "io/hardware/portd.hpp" //OCR0B rot PD5, OCR2B grün PD3, OCR2A blau PB3 #include "io/Stripe.hpp" typedef Stripe stripeclass; #include "io/Led.hpp" typedef Led ledclass; #include "io/Comperator.hpp" typedef Comperator compclass; #include "io/IR.hpp" typedef IR irclass; #include "io/uart.hpp" typedef Uart<9600> uartclass; #endif /* PERIPHERAL_H_ */