Work in progress to support a speed factor in SITL

These contains some rough changes trying to get SITL to speed up by a
SPEED_FACTOR.

This platform time code probably requires some more thought and refactor
but this gets a demo at 4x working.
This commit is contained in:
Julian Oes
2018-10-04 18:45:03 +02:00
parent 82a88d6a53
commit db6de38b19
6 changed files with 108 additions and 32 deletions
+6
View File
@@ -73,6 +73,12 @@
#define system_sleep sleep
#pragma GCC poison sleep
#include <pthread.h>
#define system_pthread_cond_timedwait pthread_cond_timedwait
// We can't poison pthread_cond_timedwait because it seems to be used in the
// <string> include.
#ifdef __cplusplus
#include <cstdlib>
#endif