12 lines
124 B
C
12 lines
124 B
C
|
#include <avr/io.h>
|
||
|
|
||
|
#include "configuration.h"
|
||
|
|
||
|
|
||
|
void
|
||
|
configuration_init(void)
|
||
|
{
|
||
|
PORTD |= _BV(PD6);
|
||
|
PORTD |= _BV(PD7);
|
||
|
}
|