diff options
| author | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:47:31 -0600 | 
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:47:31 -0600 | 
| commit | 7b614380f307cb5e27f2a05281bc76c4ace93334 (patch) | |
| tree | d243b069a134233f4b98e35769193a1244fc57f8 /src/kernel/ao_panic.c | |
| parent | 16a9d8617b2d2092d166a85ada4349601afb0dce (diff) | |
| parent | 39023ed6e29103a85bfad505506fa0dbf4dc1112 (diff) | |
Merge branch 'master' into branch-1.8
Diffstat (limited to 'src/kernel/ao_panic.c')
| -rw-r--r-- | src/kernel/ao_panic.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/ao_panic.c b/src/kernel/ao_panic.c index 3feecd5a..bd55eb9c 100644 --- a/src/kernel/ao_panic.c +++ b/src/kernel/ao_panic.c @@ -64,9 +64,9 @@ ao_panic(uint8_t reason)  		ao_panic_delay(20);  #if HAS_BEEP  		for (n = 0; n < 5; n++) { -			ao_beep(AO_BEEP_HIGH); +			ao_beep(AO_BEEP_HIGH_PANIC);  			ao_panic_delay(1); -			ao_beep(AO_BEEP_LOW); +			ao_beep(AO_BEEP_LOW_PANIC);  			ao_panic_delay(1);  		}  		ao_beep(AO_BEEP_OFF); @@ -78,7 +78,7 @@ ao_panic(uint8_t reason)  #endif  		if (reason & 0x40) {  			ao_led_on(AO_LED_PANIC); -			ao_beep(AO_BEEP_HIGH); +			ao_beep(AO_BEEP_HIGH_PANIC);  			ao_panic_delay(40);  			ao_led_off(AO_LED_PANIC);  			ao_beep(AO_BEEP_OFF); @@ -86,7 +86,7 @@ ao_panic(uint8_t reason)  		}  		for (n = 0; n < (reason & 0x3f); n++) {  			ao_led_on(AO_LED_PANIC); -			ao_beep(AO_BEEP_MID); +			ao_beep(AO_BEEP_MID_PANIC);  			ao_panic_delay(10);  			ao_led_off(AO_LED_PANIC);  			ao_beep(AO_BEEP_OFF);  | 
