mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
12 lines
272 B
C
12 lines
272 B
C
|
#ifndef AHRS_PROGRAM_MASTER_H
|
||
|
#define AHRS_PROGRAM_MASTER_H
|
||
|
|
||
|
/** Connect to AHRS and request programming mode
|
||
|
* returns: 0 if connected, -1 if failed.
|
||
|
*/
|
||
|
uint32_t AhrsProgramConnect(void);
|
||
|
|
||
|
//TODO: Implement programming protocol
|
||
|
|
||
|
#endif //AHRS_PROGRAM_MASTER_H
|