mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
89 lines
2.5 KiB
C++
89 lines
2.5 KiB
C++
|
|
#ifndef __AP_HAL_NAMESPACE_H__
|
|
#define __AP_HAL_NAMESPACE_H__
|
|
|
|
|
|
#include "string.h"
|
|
#include "utility/FastDelegate.h"
|
|
|
|
#if defined(__AVR__)
|
|
/*
|
|
gcc on AVR doesn't allow for delegates in progmem. It gives a
|
|
warning that the progmem area is uninitialised, and fills the area
|
|
with zeros. This is a workaround.
|
|
*/
|
|
#define DELEGATE_FUNCTION_VOID_TYPEDEF(type) typedef void (*type)(const void *)
|
|
#define AP_HAL_CLASSPROC_VOID(classptr, func) (void (*)(const void*))func
|
|
#else
|
|
#define DELEGATE_FUNCTION_VOID_TYPEDEF(type) typedef fastdelegate::FastDelegate0<void> type
|
|
#define AP_HAL_CLASSPROC_VOID(classptr, func) fastdelegate::MakeDelegate(classptr, func)
|
|
#endif
|
|
|
|
// macros to hide the details of delegate functions using FastDelegate
|
|
#define AP_HAL_CLASSPROC(classptr, func) fastdelegate::MakeDelegate(classptr, func)
|
|
#define AP_HAL_MEMBERPROC(func) AP_HAL_CLASSPROC(this, func)
|
|
|
|
#define DELEGATE_FUNCTION0(rettype) fastdelegate::FastDelegate0<rettype>
|
|
#define DELEGATE_FUNCTION1(rettype, args...) fastdelegate::FastDelegate1<args, rettype>
|
|
#define DELEGATE_FUNCTION2(rettype, args...) fastdelegate::FastDelegate2<args, rettype>
|
|
|
|
namespace AP_HAL {
|
|
|
|
/* Toplevel pure virtual class Hal.*/
|
|
class HAL;
|
|
|
|
/* Toplevel class names for drivers: */
|
|
class UARTDriver;
|
|
class I2CDriver;
|
|
|
|
class SPIDeviceDriver;
|
|
class SPIDeviceManager;
|
|
|
|
class AnalogSource;
|
|
class AnalogIn;
|
|
class Storage;
|
|
class DigitalSource;
|
|
class GPIO;
|
|
class RCInput;
|
|
class RCOutput;
|
|
class Scheduler;
|
|
class Semaphore;
|
|
|
|
class Util;
|
|
|
|
/* Utility Classes */
|
|
class Print;
|
|
class Stream;
|
|
class BetterStream;
|
|
|
|
/* Typdefs for function pointers (Procedure, Member Procedure)
|
|
|
|
For member functions we use the FastDelegate delegates class
|
|
which allows us to encapculate a member function as a type
|
|
*/
|
|
typedef void(*Proc)(void);
|
|
typedef DELEGATE_FUNCTION0(void) MemberProc;
|
|
|
|
/**
|
|
* Global names for all of the existing SPI devices on all platforms.
|
|
*/
|
|
|
|
enum SPIDevice {
|
|
SPIDevice_Dataflash = 0,
|
|
SPIDevice_ADS7844 = 1,
|
|
SPIDevice_MS5611 = 2,
|
|
SPIDevice_MPU6000 = 3,
|
|
SPIDevice_ADNS3080_SPI0 = 4,
|
|
SPIDevice_ADNS3080_SPI3 = 5,
|
|
SPIDevice_MPU9250 = 6,
|
|
SPIDevice_L3GD20 = 7,
|
|
SPIDevice_LSM303D = 8,
|
|
SPIDevice_LSM9DS0_AM = 9,
|
|
SPIDevice_LSM9DS0_G = 10,
|
|
SPIDevice_Ublox = 11
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __AP_HAL_NAMESPACE_H__
|