aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/e300/rev_c/io.h
blob: 7eea8f0a3811811b1986a3f8780bbcb58238a270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright 2009 Ettus Research LLC
 */

#ifndef IO_H
#define IO_H

#include <stdint.h>
#include <stdbool.h>

#define IO_PX(port, pin) ((uint8_t)(((port - 'A') << 4) + pin))
#define IO_PA(pin) IO_PX('A', pin)
#define IO_PB(pin) IO_PX('B', pin)
#define IO_PC(pin) IO_PX('C', pin)
#define IO_PD(pin) IO_PX('D', pin)

typedef const uint8_t io_pin_t;

void io_output_pin(io_pin_t pin);
void io_input_pin(io_pin_t pin);
bool io_is_output(io_pin_t pin);
bool io_is_input(io_pin_t pin);

void io_set_pin(io_pin_t pin);
void io_clear_pin(io_pin_t pin);
void io_enable_pin(io_pin_t pin, bool enable);
bool io_is_pin_set(io_pin_t pin);

bool io_test_pin(io_pin_t pin);

#endif /* IO_H */