diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-10-15 16:22:55 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-10-15 16:22:55 +0200 |
commit | 5471509e033abcddb078383cc4656af06c265ce6 (patch) | |
tree | 09a49d487135932793e06b748892bed1ffb37120 /include | |
parent | 2c1afc394913da7cb4823d72f3a11fbc43c9595e (diff) |
Enable busy waiting in I2C driver to reach selected I2C clock
Diffstat (limited to 'include')
-rw-r--r-- | include/arch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/arch.h b/include/arch.h index 8024818..094b230 100644 --- a/include/arch.h +++ b/include/arch.h @@ -10,8 +10,8 @@ class Arch { void setup(); void idle_loop(); void idle(); - void delay_us(unsigned char const us); - void delay_ms(unsigned char const ms); + void delay_us(unsigned int const us); + void delay_ms(unsigned int const ms); }; extern Arch arch; |