urtps: rectify comment

This commit is contained in:
Julian Oes 2021-06-29 11:41:37 +02:00 committed by Nuno Marques
parent 31b1241de8
commit 0c9fefce32
1 changed files with 1 additions and 4 deletions

View File

@ -395,13 +395,10 @@ int UART_node::init()
while (0 < ::read(uart_fd, (void *)&aux, 64)) {
flush = true;
/**
* According to px4_time.h, px4_usleep() is only defined when lockstep is set
* to be used
*/
#ifndef px4_usleep
usleep(1000);
#else
/* With PX4 px4_usleep() should be used. */
px4_usleep(1000);
#endif /* px4_usleep */
}