/* * port.c * * Created: 20.02.2019 20:54:33 * Author: jens */ #include #include "port.h" void port_init() { PORTB = PORTB | 0x03; DDRB = DDB1 | DDB2; }