repo.or.cz
/
ardupilot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Copter: free allocations in case of allocation failure
[ardupilot.git]
/
libraries
/
AP_ESC_Telem
/
AP_ESC_Telem_SITL.h
blob
4218f718b35c6cf2d5eca569b8dad91cc646b412
1
#pragma once
2
3
#include <AP_HAL/AP_HAL.h>
4
#include
"AP_ESC_Telem_Backend.h"
5
#include <SITL/SITL.h>
6
7
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
8
9
class
AP_ESC_Telem_SITL
:
public
AP_ESC_Telem_Backend
{
10
public
:
11
AP_ESC_Telem_SITL
();
12
13
void
update
();
14
15
protected
:
16
17
private
:
18
};
19
20
#endif