SubGhz: Nice FlooR S improvements, cli stack overflow fix, code documentation, new key data formatting (#559)

This commit is contained in:
Skorpionm
2021-07-02 17:25:49 +04:00
committed by GitHub
parent b6d5b5cb74
commit 88be176fcf
19 changed files with 454 additions and 82 deletions
+11
View File
@@ -15,6 +15,12 @@ struct SubGhzWorker {
void* context;
};
/** Rx callback timer
*
* @param level received signal level
* @param duration received signal duration
* @param context
*/
void subghz_worker_rx_callback(
ApiHalSubGhzCaptureLevel level,
uint32_t duration,
@@ -34,6 +40,11 @@ void subghz_worker_rx_callback(
portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
}
/** Worker callback thread
*
* @param context
* @return exit code
*/
static int32_t subghz_worker_thread_callback(void* context) {
SubGhzWorker* instance = context;