summaryrefslogtreecommitdiff
path: root/src/arch/blinkenrocket/driver/gpio.cc
blob: bf27c7e2f1758e9c1ddef7407a9bc63e54e0c0d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright 2020 Birte Kristina Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */
#include "driver/gpio.h"
#include <avr/io.h>
#include <avr/interrupt.h>

GPIO gpio;

ISR(PCINT0_vect)
{
}

ISR(PCINT1_vect)
{
}

ISR(PCINT2_vect)
{
}