typo combing

This commit is contained in:
Round-Pi
2023-02-20 10:55:53 -05:00
parent 80a64d8e1a
commit b89902942b
52 changed files with 118 additions and 118 deletions

View File

@@ -16,7 +16,7 @@ struct SubGhzTxRxWorker {
FuriStreamBuffer* stream_rx;
volatile bool worker_running;
volatile bool worker_stoping;
volatile bool worker_stopping;
SubGhzTxRxWorkerStatus status;
@@ -166,7 +166,7 @@ static int32_t subghz_tx_rx_worker_thread(void* context) {
subghz_tx_rx_worker_tx(instance, data, size_tx);
}
} else {
//recive
//receive
if(subghz_tx_rx_worker_rx(instance, data, size_rx)) {
if(furi_stream_buffer_spaces_available(instance->stream_rx) >= size_rx[0]) {
if(instance->callback_have_read &&
@@ -211,7 +211,7 @@ SubGhzTxRxWorker* subghz_tx_rx_worker_alloc() {
furi_stream_buffer_alloc(sizeof(uint8_t) * SUBGHZ_TXRX_WORKER_BUF_SIZE, sizeof(uint8_t));
instance->status = SubGhzTxRxWorkerStatusIDLE;
instance->worker_stoping = true;
instance->worker_stopping = true;
return instance;
}