diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-07-22 14:28:32 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-07-22 14:28:32 +0200 |
commit | d0ea0a521a582549dfd9a98b47e7c12d8bcd0de6 (patch) | |
tree | 894d784c1fb526b4e95b7e75bd335f40f67e435f /include/arch.h | |
parent | e704cc1193babd25db46055a6de436be687aba18 (diff) |
add timed_resistive_load for µs-scale model generation timing benchmarks
Diffstat (limited to 'include/arch.h')
-rw-r--r-- | include/arch.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/arch.h b/include/arch.h index 877af62..1911271 100644 --- a/include/arch.h +++ b/include/arch.h @@ -10,6 +10,8 @@ class Arch { void setup(); void idle_loop(); void idle(); + + // Delay functions are not exact void delay_us(unsigned int const us); void delay_ms(unsigned int const ms); void sleep_ms(unsigned int const ms); |