mirror of
https://github.com/osiweb/unified_retro_keyboard.git
synced 2024-11-29 05:49:22 +00:00
Bug fix: long delay should invoke _delay_ms(), not _delay_us().
This commit is contained in:
parent
b5fa4f43bb
commit
7b05b6eadb
@ -679,7 +679,7 @@ void asdf_arch_pulse_delay_short(void)
|
|||||||
//
|
//
|
||||||
void asdf_arch_pulse_delay_long(void)
|
void asdf_arch_pulse_delay_long(void)
|
||||||
{
|
{
|
||||||
_delay_us(ASDF_PULSE_DELAY_LONG_MS);
|
_delay_ms(ASDF_PULSE_DELAY_LONG_MS);
|
||||||
}
|
}
|
||||||
|
|
||||||
// PROCEDURE: asdf_arch_init
|
// PROCEDURE: asdf_arch_init
|
||||||
|
@ -674,7 +674,7 @@ void asdf_arch_pulse_delay_short(void)
|
|||||||
//
|
//
|
||||||
void asdf_arch_pulse_delay_long(void)
|
void asdf_arch_pulse_delay_long(void)
|
||||||
{
|
{
|
||||||
_delay_us(ASDF_PULSE_DELAY_LONG_MS);
|
_delay_ms(ASDF_PULSE_DELAY_LONG_MS);
|
||||||
}
|
}
|
||||||
|
|
||||||
// PROCEDURE: asdf_arch_init
|
// PROCEDURE: asdf_arch_init
|
||||||
|
Loading…
Reference in New Issue
Block a user