File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Expand file tree Collapse file tree 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 {
165165
166166 /* *
167167 * 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).
169169 * Essentially this just calls send() and waitForStatus().
170170 * See waitForStatus for the meaning of the return value and
171171 * more details.
Original file line number Diff line number Diff line change 11#ifndef ANT_SETENCRYPTIONINFO_h
22#define ANT_SETENCRYPTIONINFO_h
33
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+ };
523
624#endif // ANT_SETENCRYPTIONINFO_h
You can’t perform that action at this time.
0 commit comments