Files @ 5bb33b7045ec
Branch filter:

Location: therm/gpio.h

Ethan Zonca
Added optimized flags that remove unused functions from compilation output
#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