mirror of
https://github.com/osiweb/unified_retro_keyboard.git
synced 2024-12-27 06:29:17 +00:00
Fix bad msec delay routine in 2560 arch module
This commit is contained in:
parent
03069fc8b5
commit
8bb2711ccb
@ -695,7 +695,9 @@ void asdf_arch_pulse_delay_long(void)
|
|||||||
//
|
//
|
||||||
void asdf_arch_delay_ms(uint16_t delay_ms)
|
void asdf_arch_delay_ms(uint16_t delay_ms)
|
||||||
{
|
{
|
||||||
_delay_ms(delay_ms);
|
for (uint16_t i=0; i < delay_ms; i++) {
|
||||||
|
_delay_ms(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// PROCEDURE: asdf_arch_init
|
// PROCEDURE: asdf_arch_init
|
||||||
|
Loading…
Reference in New Issue
Block a user