You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
558 B
27 lines
558 B
12 years ago
|
|
||
|
#include <AP_HAL.h>
|
||
|
#include "AP_HAL_PX4.h"
|
||
|
|
||
|
#include "HAL_PX4.h"
|
||
|
#include "UARTDriver.h"
|
||
|
|
||
|
using namespace AP_HAL;
|
||
|
using namespace AP_HAL_PX4;
|
||
|
|
||
|
|
||
|
const HAL_PX4 AP_HAL_PX4_Instance(
|
||
|
(UARTDriver*) NULL,
|
||
|
(UARTDriver*) NULL,
|
||
|
(UARTDriver*) NULL,
|
||
|
(UARTDriver*) NULL,
|
||
|
(I2CDriver*) NULL,
|
||
|
(SPIDriver*) NULL,
|
||
|
(AnalogIn*) NULL,
|
||
|
(Storage*) NULL,
|
||
|
(Dataflash*) NULL,
|
||
|
(ConsoleDriver*) NULL,
|
||
|
(GPIO*) NULL,
|
||
|
(RCInput*) NULL,
|
||
|
(RCOutput*) NULL,
|
||
|
(Scheduler*) NULL);
|