minor corrections to adhere contiki code style guidelines
This commit is contained in:
parent
aa07993d36
commit
ee556dcf14
7 changed files with 47 additions and 47 deletions
|
@ -120,9 +120,9 @@ clock_delay_usec(uint16_t dt)
|
|||
|
||||
stop = now + dt * ((pic32_clock_get_system_clock() / 1000000) / 2);
|
||||
|
||||
for (;;) {
|
||||
for(;;) {
|
||||
asm volatile("mfc0 %0, $9" : "=r"(now));
|
||||
if ((int32_t) (now - stop) >= 0) {
|
||||
if((int32_t)(now - stop) >= 0) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue