Files @ 425d70b8073e
Branch filter:

Location: therm/gpio.h

Ethan Zonca
Merge in multiple setpoints, fahrenheit support, tc error page to f0 branch
#ifndef GPIO_H
#define GPIO_H


#define CHANGE_PERIOD_MS 100
#define CHANGE_ELAPSED (ticks - change_time_reset) > CHANGE_PERIOD_MS
#define CHANGE_RESET change_time_reset = ticks


void user_input(uint16_t* to_modify);
void init_gpio(void);

#endif

// vim:softtabstop=4 shiftwidth=4 expandtab