aboutsummaryrefslogtreecommitdiff
path: root/include/ioport.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ioport.h')
-rw-r--r--include/ioport.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/include/ioport.h b/include/ioport.h
index 1022493..95b6205 100644
--- a/include/ioport.h
+++ b/include/ioport.h
@@ -9,36 +9,36 @@
#ifdef CONFIG_IOPORTS
enum ioInResistor {
- IO_PULLUP,
- IO_PULLDOWN
+ IO_PULLUP,
+ IO_PULLDOWN
};
static inline void io_setout(uint8_t group, uint8_t mask) {
- IO_DDR(group) |= mask;
+ IO_DDR(group) |= mask;
}
-static inline void io_hight(uint8_t group, uint8_t mask) {
- IO_PORT(group) |= mask;
+static inline void io_high(uint8_t group, uint8_t mask) {
+ IO_PORT(group) |= mask;
}
static inline void io_low(uint8_t group, uint8_t mask) {
- IO_PORT(group) &= ~mask;
+ IO_PORT(group) &= ~mask;
}
static inline void io_set(uint8_t group, uint8_t mask, int8_t val) {
- if (val)
- io_hight(group, mask);
- else
- io_low(group, mask);
+ if (val)
+ io_high(group, mask);
+ else
+ io_low(group, mask);
}
static inline void io_setin(uint8_t group, uint8_t mask,
enum ioInResistor resistor) {
- IO_DDR(group) &= ~mask;
- if (resistor == IO_PULLUP)
- IO_PORT(group) |= mask;
- else
- IO_PORT(group) &= ~mask;
+ IO_DDR(group) &= ~mask;
+ if (resistor == IO_PULLUP)
+ IO_PORT(group) |= mask;
+ else
+ IO_PORT(group) &= ~mask;
}
static inline int8_t io_get(uint8_t group, uint8_t mask) {
- return (int8_t) IO_PIN(group) & mask;
+ return (int8_t) IO_PIN(group) & mask;
}
#ifdef CONFIG_PCINT
@@ -46,7 +46,7 @@ static inline int8_t io_get(uint8_t group, uint8_t mask) {
#define IO_RISING (1 << 0)
#define IO_FALLING (1 << 1)
void io_change_sethook(uint8_t group, uint8_t mask, uint8_t edge,
- void (*change) (uint8_t group, uint8_t mask));
+ void (*change) (uint8_t group, uint8_t mask));
void io_change_remhook(void (*change) (uint8_t group, uint8_t mask));
void io_change_clearhooks(void);