mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 16:18:29 -04:00
0816937ab1
this provides RC onput, RC output, scheduling, storage, UARTs and all necessary support routines to fly ArduPilot on QURT
18 lines
456 B
Plaintext
18 lines
456 B
Plaintext
#include "AEEStdDef.idl"
|
|
|
|
interface ardupilot {
|
|
// start main thread
|
|
uint32 start();
|
|
|
|
// a heartbeat for debugging
|
|
uint32 heartbeat();
|
|
|
|
// get eeprom updates
|
|
uint32 set_storage(in sequence<uint8> eeprom);
|
|
uint32 get_storage(rout sequence<uint8> eeprom);
|
|
|
|
// handle socket data
|
|
uint32 socket_check(rout sequence<uint8> buf, rout uint32 nbytes);
|
|
uint32 socket_input(in sequence<uint8> buf, rout uint32 nbytes);
|
|
};
|