RCInput_RCProtocol.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. This program is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. /*
  14. RC input system that uses libraries/AP_RCProtocol with UART based inputs
  15. with either SBUS protocol or 115200 based protocols (or both)
  16. */
  17. #pragma once
  18. #include <AP_HAL/AP_HAL.h>
  19. #include <AP_RCProtocol/AP_RCProtocol.h>
  20. #include "RCInput.h"
  21. #include <stdarg.h>
  22. #if CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_DISCO || \
  23. CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_BLUE
  24. namespace Linux {
  25. class RCInput_RCProtocol : public RCInput {
  26. public:
  27. RCInput_RCProtocol(const char *dev_sbus, const char *dev_115200);
  28. void init() override;
  29. void _timer_tick(void) override;
  30. private:
  31. int open_sbus(const char *path);
  32. int open_115200(const char *path);
  33. const char *dev_sbus;
  34. const char *dev_115200;
  35. int fd_sbus;
  36. int fd_115200;
  37. };
  38. };
  39. #endif