We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b5a811 commit 08bad1bCopy full SHA for 08bad1b
src/signalDecoder.h
@@ -87,9 +87,13 @@ class rtl_433_Decoder {
87
/// @param p Pointer to RFraw null-term string data
88
/// @param ctx Optional context pointer for callback
89
void processRFRaw(char const *p,void* ctx=nullptr);
90
-
+ /// @brief set modululation to ook
91
+ /// @param ook true=ook, false=fsk
92
+ void setook(bool ook) { _ookModulation=ook; }
93
unsigned int unparsedSignals = 0;
94
95
+ r_cfg_t g_cfg; // Global config object
96
+
97
protected:
98
static void rtl_433_DecoderTask(void* pvParameters);
99
@@ -98,7 +102,6 @@ class rtl_433_Decoder {
102
103
int rtlVerbose = 0;
100
104
101
- r_cfg_t g_cfg; // Global config object
105
TaskHandle_t rtl_433_DecoderHandle;
106
QueueHandle_t rtl_433_Queue;
107
};
0 commit comments