Skip to content
Snippets Groups Projects
Commit 32f50fd6 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

arduino-nano: make delay functions inline

parent a827a8ad
No related branches found
Tags 1.19.0
No related merge requests found
......@@ -101,12 +101,12 @@ void Arch::idle(void)
asm("wdr");
}
void Arch::delay_us(unsigned int const us)
inline void Arch::delay_us(unsigned int const us)
{
_delay_us(us);
}
void Arch::delay_ms(unsigned int const ms)
inline void Arch::delay_ms(unsigned int const ms)
{
_delay_ms(ms);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment