Fixed a little syntax error

Added missing semicolon
This commit is contained in:
Emanuele Iannone 2016-07-14 23:38:38 +02:00 committed by GitHub
parent bae86685f6
commit 5974111862
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ static inline void hw_delayMicroseconds(uint32_t time_to_wait) {
// https://github.com/pimatic/rfcontroljs/issues/29#issuecomment-85460916
while(time_to_wait > 16000) {
#if defined(ESP8266)
delay(16)
delay(16);
#else
delayMicroseconds(16000);
#endif