diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-07 17:31:33 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-07 17:31:33 +0200 |
commit | 8579b2a1023211c86cb1221eb2b44b9221034478 (patch) | |
tree | c0e256b57aeedbe387868e39f9754b4d3479e4ba /include/arch.h | |
parent | 55786418160429b7e974336758dd785d9feeb5fa (diff) |
arch: Add delay_ms function
Diffstat (limited to 'include/arch.h')
-rw-r--r-- | include/arch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/arch.h b/include/arch.h index a053b58..8024818 100644 --- a/include/arch.h +++ b/include/arch.h @@ -11,6 +11,7 @@ class Arch { void idle_loop(); void idle(); void delay_us(unsigned char const us); + void delay_ms(unsigned char const ms); }; extern Arch arch; |