Fixing typo across many files (#1287)
* Update furi_hal_subghz.c * Update subghz_scene_read_raw.c * Update subghz_i.c * Update came_twee.c * Update secplus_v2.c
This commit is contained in:
		@@ -184,7 +184,7 @@ bool subghz_scene_read_raw_on_event(void* context, SceneManagerEvent event) {
 | 
			
		||||
                scene_manager_next_scene(subghz->scene_manager, SubGhzSceneMoreRAW);
 | 
			
		||||
                return true;
 | 
			
		||||
            } else {
 | 
			
		||||
                furi_crash("SugGhz: RAW file name update error.");
 | 
			
		||||
                furi_crash("SubGhz: RAW file name update error.");
 | 
			
		||||
            }
 | 
			
		||||
            break;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@ void subghz_get_frequency_modulation(SubGhz* subghz, string_t frequency, string_
 | 
			
		||||
            subghz->txrx->preset == FuriHalSubGhzPreset2FSKDev476Async) {
 | 
			
		||||
            string_set_str(modulation, "FM");
 | 
			
		||||
        } else {
 | 
			
		||||
            furi_crash("SugGhz: Modulation is incorrect.");
 | 
			
		||||
            furi_crash("SubGhz: Modulation is incorrect.");
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -71,7 +71,7 @@ void subghz_begin(SubGhz* subghz, FuriHalSubGhzPreset preset) {
 | 
			
		||||
uint32_t subghz_rx(SubGhz* subghz, uint32_t frequency) {
 | 
			
		||||
    furi_assert(subghz);
 | 
			
		||||
    if(!furi_hal_subghz_is_frequency_valid(frequency)) {
 | 
			
		||||
        furi_crash("SugGhz: Incorrect RX frequency.");
 | 
			
		||||
        furi_crash("SubGhz: Incorrect RX frequency.");
 | 
			
		||||
    }
 | 
			
		||||
    furi_assert(
 | 
			
		||||
        subghz->txrx->txrx_state != SubGhzTxRxStateRx &&
 | 
			
		||||
@@ -92,7 +92,7 @@ uint32_t subghz_rx(SubGhz* subghz, uint32_t frequency) {
 | 
			
		||||
static bool subghz_tx(SubGhz* subghz, uint32_t frequency) {
 | 
			
		||||
    furi_assert(subghz);
 | 
			
		||||
    if(!furi_hal_subghz_is_frequency_valid(frequency)) {
 | 
			
		||||
        furi_crash("SugGhz: Incorrect TX frequency.");
 | 
			
		||||
        furi_crash("SubGhz: Incorrect TX frequency.");
 | 
			
		||||
    }
 | 
			
		||||
    furi_assert(subghz->txrx->txrx_state != SubGhzTxRxStateSleep);
 | 
			
		||||
    furi_hal_subghz_idle();
 | 
			
		||||
 
 | 
			
		||||
@@ -412,7 +412,7 @@ void furi_hal_subghz_load_preset(FuriHalSubGhzPreset preset) {
 | 
			
		||||
        furi_hal_subghz_load_registers(furi_hal_subghz_preset_gfsk_9_99kb_async_regs);
 | 
			
		||||
        furi_hal_subghz_load_patable(furi_hal_subghz_preset_gfsk_async_patable);
 | 
			
		||||
    } else {
 | 
			
		||||
        furi_crash("SugGhz: Missing config.");
 | 
			
		||||
        furi_crash("SubGhz: Missing config.");
 | 
			
		||||
    }
 | 
			
		||||
    furi_hal_subghz_preset = preset;
 | 
			
		||||
}
 | 
			
		||||
@@ -564,7 +564,7 @@ uint32_t furi_hal_subghz_set_frequency_and_path(uint32_t value) {
 | 
			
		||||
    } else if(value >= 778999847 && value <= 928000000) {
 | 
			
		||||
        furi_hal_subghz_set_path(FuriHalSubGhzPath868);
 | 
			
		||||
    } else {
 | 
			
		||||
        furi_crash("SugGhz: Incorrect frequency during set.");
 | 
			
		||||
        furi_crash("SubGhz: Incorrect frequency during set.");
 | 
			
		||||
    }
 | 
			
		||||
    return value;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -145,7 +145,7 @@ static LevelDuration
 | 
			
		||||
        break;
 | 
			
		||||
 | 
			
		||||
    default:
 | 
			
		||||
        furi_crash("SugGhz: ManchesterEncoderResult is incorrect.");
 | 
			
		||||
        furi_crash("SubGhz: ManchesterEncoderResult is incorrect.");
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
    return level_duration_make(data.level, data.duration);
 | 
			
		||||
 
 | 
			
		||||
@@ -442,7 +442,7 @@ static LevelDuration
 | 
			
		||||
        break;
 | 
			
		||||
 | 
			
		||||
    default:
 | 
			
		||||
        furi_crash("SugGhz: ManchesterEncoderResult is incorrect.");
 | 
			
		||||
        furi_crash("SubGhz: ManchesterEncoderResult is incorrect.");
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
    return level_duration_make(data.level, data.duration);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user