X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fstmf0%2Fao_beep_stm.c;h=751e611aae3a45e5150cce85af5dc387ada5ebbf;hb=6394680d1e9ff8596068a73eb43e4adc45722455;hp=31af7f4a00ab74d19fc2fa2a54808ba286630b87;hpb=cdaa0d7b272505c49017f409b7c0b8e3240608f0;p=fw%2Faltos diff --git a/src/stmf0/ao_beep_stm.c b/src/stmf0/ao_beep_stm.c index 31af7f4a..751e611a 100644 --- a/src/stmf0/ao_beep_stm.c +++ b/src/stmf0/ao_beep_stm.c @@ -58,7 +58,7 @@ disable(void) #if BEEPER_TIMER == 1 timer.bdtr = 0; #endif - stm_rcc_enr &= ~(1 << STM_RCC_TIMER); + stm_rcc_enr &= ~(1UL << STM_RCC_TIMER); /* Disconnect the timer from the pin */ stm_afr_set(BEEPER_PORT, BEEPER_PIN, STM_AFR_NONE); @@ -376,7 +376,7 @@ ao_beep(uint8_t beep) } void -ao_beep_for(uint8_t beep, uint16_t ticks) +ao_beep_for(uint8_t beep, AO_TICK_TYPE ticks) { ao_beep(beep); ao_delay(ticks); @@ -389,5 +389,5 @@ ao_beep_init(void) ao_enable_output(BEEPER_PORT, BEEPER_PIN, 0); /* Leave the timer off until requested */ - stm_rcc_enr &= ~(1 << STM_RCC_TIMER); + stm_rcc_enr &= ~(1UL << STM_RCC_TIMER); }