diff options
| author | Bdale Garbee <bdale@gag.com> | 2016-05-06 18:13:12 -0600 | 
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2016-05-06 18:13:12 -0600 | 
| commit | 4c20fdfa543059739b756171b991d430789cded1 (patch) | |
| tree | f39e6c729364211bf0570c459c37b576ecf9faa9 /src/kernel/ao_panic.c | |
| parent | e58dd78bcb749315f84168c83a74cf80851bf815 (diff) | |
| parent | 2f0c977c747824d0798550ac64eceb1d66c50efd (diff) | |
Merge branch 'branch-1.6' into debian
Diffstat (limited to 'src/kernel/ao_panic.c')
| -rw-r--r-- | src/kernel/ao_panic.c | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/src/kernel/ao_panic.c b/src/kernel/ao_panic.c index c29cd8fe..e280f98c 100644 --- a/src/kernel/ao_panic.c +++ b/src/kernel/ao_panic.c @@ -38,10 +38,15 @@ ao_panic_delay(uint8_t n)  {  	uint8_t	i = 0, j = 0; -	while (n--) +	while (n--) { +#ifdef AO_PANIC_DELAY_SCALE +	uint8_t s = AO_PANIC_DELAY_SCALE; +	while (s--) +#endif  		while (--j)  			while (--i)  				ao_arch_nop(); +	}  }  void @@ -56,16 +61,16 @@ ao_panic(uint8_t reason)  	ao_arch_block_interrupts();  	for (;;) {  		ao_panic_delay(20); +#if HAS_BEEP  		for (n = 0; n < 5; n++) { -			ao_led_on(AO_LED_PANIC);  			ao_beep(AO_BEEP_HIGH);  			ao_panic_delay(1); -			ao_led_off(AO_LED_PANIC);  			ao_beep(AO_BEEP_LOW);  			ao_panic_delay(1);  		}  		ao_beep(AO_BEEP_OFF);  		ao_panic_delay(2); +#endif  #ifdef SDCC  #pragma disable_warning 126 | 
