File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ class BaseAntWithCallbacks : virtual public BaseAnt {
165
165
166
166
/* *
167
167
* Sends a AntRequest (TX packet) out the serial port, and wait
168
- * for a status response API frame (up until the given timeout).
168
+ * for a channel response (up until the given timeout).
169
169
* Essentially this just calls send() and waitForStatus().
170
170
* See waitForStatus for the meaning of the return value and
171
171
* more details.
Original file line number Diff line number Diff line change 1
1
#ifndef ANT_SETENCRYPTIONINFO_h
2
2
#define ANT_SETENCRYPTIONINFO_h
3
3
4
- // TODO
4
+ #include < TX/ANT_AntRequest.h>
5
+
6
+ /* *
7
+ * Represents a set encryption info message
8
+ *
9
+ * it is used to configure the ...?
10
+ */
11
+ class SetEncryptionInfo : public AntRequest {
12
+ public:
13
+ SetEncryptionInfo ();
14
+ SetEncryptionInfo (uint8_t channel, uint16_t waveform);
15
+ // TODO implement params
16
+ uint8_t getData (uint8_t pos);
17
+ uint8_t getDataLength ();
18
+ #ifdef NATIVE_API_AVAILABLE
19
+ uint8_t execute ();
20
+ #endif // NATIVE_API_AVAILABLE
21
+ private:
22
+ };
5
23
6
24
#endif // ANT_SETENCRYPTIONINFO_h
You can’t perform that action at this time.
0 commit comments