2011-11-16 21:49:56 -04:00
|
|
|
/*
|
|
|
|
SITL handling - utility functions
|
|
|
|
|
|
|
|
This simulates the APM1 hardware sufficiently for the APM code to
|
|
|
|
think it is running on real hardware
|
|
|
|
|
|
|
|
Andrew Tridgell November 2011
|
|
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include "desktop.h"
|
|
|
|
|
|
|
|
|
|
|
|
void set_nonblocking(int fd)
|
|
|
|
{
|
|
|
|
unsigned v = fcntl(fd, F_GETFL, 0);
|
|
|
|
fcntl(fd, F_SETFL, v | O_NONBLOCK);
|
|
|
|
}
|
2011-11-18 19:07:11 -04:00
|
|
|
|
|
|
|
double normalise(double v, double min, double max)
|
|
|
|
{
|
|
|
|
while (v < min) {
|
|
|
|
v += (max - min);
|
|
|
|
}
|
|
|
|
while (v > max) {
|
|
|
|
v -= (max - min);
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
2011-11-28 01:01:23 -04:00
|
|
|
|
|
|
|
double normalise180(double v)
|
|
|
|
{
|
|
|
|
return normalise(v, -180, 180);
|
|
|
|
}
|