diff options
Diffstat (limited to 'src/attiny')
| -rw-r--r-- | src/attiny/ao_arch_funcs.h | 11 | ||||
| -rw-r--r-- | src/attiny/ao_exti.h | 1 | 
2 files changed, 4 insertions, 8 deletions
| diff --git a/src/attiny/ao_arch_funcs.h b/src/attiny/ao_arch_funcs.h index 8c9d1ae6..76dc7820 100644 --- a/src/attiny/ao_arch_funcs.h +++ b/src/attiny/ao_arch_funcs.h @@ -20,21 +20,16 @@   */  #define ao_spi_get_mask(reg,mask,bus,speed) do {	\ -		(reg) &= ~(mask);		\ +		(reg) &= ~(mask);			\  	} while (0)  #define ao_spi_put_mask(reg,mask,bus) do {	\  		(reg) |= (mask);		\  	} while (0) -#define ao_spi_get_bit(reg,bit,pin,bus,speed) do {	\ -		(pin) = 0;			\ -	} while (0) - -#define ao_spi_put_bit(reg,bit,pin,bus) do {	\ -		(pin) = 1;			\ -	} while (0) +#define ao_spi_get_bit(reg,bit,pin,bus,speed) ao_spi_get_mask(reg,(1<<(bit)),bus,speed) +#define ao_spi_put_bit(reg,bit,pin,bus) ao_spi_put_mask(reg,(1<<(bit)),bus)  #define ao_gpio_token_paster(x,y)		x ## y  #define ao_gpio_token_evaluator(x,y)	ao_gpio_token_paster(x,y) diff --git a/src/attiny/ao_exti.h b/src/attiny/ao_exti.h index 2ea4f47d..85bb2fba 100644 --- a/src/attiny/ao_exti.h +++ b/src/attiny/ao_exti.h @@ -30,5 +30,6 @@ ao_exti_setup_port(uint8_t pin, uint8_t mode, void (*callback)(void));  #define ao_exti_init()  #define AO_EXTI_MODE_RISING	1 +#define AO_EXTI_PIN_NOCONFIGURE	0  #endif /* _AO_EXTI_H_ */ | 
