rc.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017, James Jackson and Daniel Koch, BYU MAGICC Lab
3  *
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * * Redistributions of source code must retain the above copyright notice, this
10  * list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright notice,
13  * this list of conditions and the following disclaimer in the documentation
14  * and/or other materials provided with the distribution.
15  *
16  * * Neither the name of the copyright holder nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef ROSFLIGHT_FIRMWARE_RC_H
33 #define ROSFLIGHT_FIRMWARE_RC_H
34 
35 #include <stdint.h>
36 #include <stdbool.h>
37 
38 namespace rosflight_firmware
39 {
40 
41 class ROSflight;
42 
43 class RC
44 {
45 
46 public:
47  enum Stick
48  {
54  };
55 
56  enum Switch
57  {
63  };
64 
65  RC(ROSflight &_rf);
66 
67  void init();
68  float stick(Stick channel);
69  bool switch_on(Switch channel);
70  bool switch_mapped(Switch channel);
71  bool run();
72  bool new_command();
73  void param_change_callback(uint16_t param_id);
74 
75 private:
77 
78  typedef struct
79  {
80  uint8_t channel;
81  int8_t direction;
82  bool mapped;
84 
85  typedef struct
86  {
87  uint8_t channel;
88  bool one_sided;
90 
92 
95  uint32_t prev_time_ms = 0;
96  uint32_t last_rc_receive_time = 0;
97 
100 
102  volatile float stick_values[STICKS_COUNT];
103 
104  void init_rc();
105  void init_switches();
106  void init_sticks();
107  bool check_rc_lost();
109 };
110 
111 } // namespace rosflight_firmware
112 
113 #endif // ROSLFLIGHT_FIRMWARE_RC_H
bool switch_mapped(Switch channel)
Definition: rc.cpp:126
bool new_command_
Definition: rc.h:91
rc_switch_config_t switches[SWITCHES_COUNT]
Definition: rc.h:99
void init_switches()
Definition: rc.cpp:147
rc_stick_config_t sticks[STICKS_COUNT]
Definition: rc.h:98
bool switch_on(Switch channel)
Definition: rc.cpp:121
ROSflight & RF_
Definition: rc.h:76
float stick(Stick channel)
Definition: rc.cpp:116
void init_sticks()
Definition: rc.cpp:132
uint32_t time_of_last_stick_deviation
Definition: rc.h:93
RC(ROSflight &_rf)
Definition: rc.cpp:41
uint32_t time_sticks_have_been_in_arming_position_ms
Definition: rc.h:94
uint32_t prev_time_ms
Definition: rc.h:95
volatile float stick_values[STICKS_COUNT]
Definition: rc.h:102
void param_change_callback(uint16_t param_id)
Definition: rc.cpp:110
volatile bool switch_values[SWITCHES_COUNT]
Definition: rc.h:101
uint32_t last_rc_receive_time
Definition: rc.h:96
void look_for_arm_disarm_signal()
Definition: rc.cpp:238
bool new_command()
Definition: rc.cpp:356
bool check_rc_lost()
Definition: rc.cpp:206


rosflight_firmware
Author(s): Daniel Koch , James Jackson
autogenerated on Wed Jul 3 2019 19:59:25