2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2023-08-19 19:49:28 -03:00
|
|
|
#include <AP_RCProtocol/AP_RCProtocol_config.h>
|
|
|
|
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL && AP_RCPROTOCOL_ENABLED
|
|
|
|
|
2012-12-17 23:56:21 -04:00
|
|
|
#include "RCInput.h"
|
2019-08-28 19:39:39 -03:00
|
|
|
#include <AP_RCProtocol/AP_RCProtocol.h>
|
2012-12-17 23:56:21 -04:00
|
|
|
|
2015-05-04 03:15:12 -03:00
|
|
|
using namespace HALSITL;
|
2012-12-17 23:56:21 -04:00
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2016-01-10 02:23:32 -04:00
|
|
|
void RCInput::init()
|
2012-12-17 23:56:21 -04:00
|
|
|
{
|
2019-08-28 19:39:39 -03:00
|
|
|
AP::RC().init();
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
|
|
|
|
2016-01-10 02:23:32 -04:00
|
|
|
bool RCInput::new_input()
|
2015-02-08 18:56:47 -04:00
|
|
|
{
|
2024-03-14 02:47:43 -03:00
|
|
|
return AP::RC().new_input();
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
|
|
|
|
2016-01-10 02:23:32 -04:00
|
|
|
uint16_t RCInput::read(uint8_t ch)
|
2016-01-03 17:22:02 -04:00
|
|
|
{
|
2024-03-14 02:47:43 -03:00
|
|
|
return AP::RC().read(ch);
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
|
|
|
|
2016-01-10 02:23:32 -04:00
|
|
|
uint8_t RCInput::read(uint16_t* periods, uint8_t len)
|
2016-01-03 17:22:02 -04:00
|
|
|
{
|
2024-03-14 02:47:43 -03:00
|
|
|
AP::RC().read(periods, len);
|
|
|
|
return MIN(len, num_channels());
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
|
|
|
|
2018-07-23 23:46:31 -03:00
|
|
|
uint8_t RCInput::num_channels()
|
|
|
|
{
|
2024-03-14 02:47:43 -03:00
|
|
|
return AP::RC().num_channels();
|
2018-07-23 23:46:31 -03:00
|
|
|
}
|
|
|
|
|
2012-12-18 05:04:47 -04:00
|
|
|
#endif
|