diff --git a/applications/plugins/subbrute/subbrute_device.c b/applications/plugins/subbrute/subbrute_device.c index bf85e3a66..8328c0492 100644 --- a/applications/plugins/subbrute/subbrute_device.c +++ b/applications/plugins/subbrute/subbrute_device.c @@ -20,7 +20,7 @@ SubBruteDevice* subbrute_device_alloc() { instance->environment = subghz_environment_alloc(); #ifdef FURI_DEBUG - subbrute_device_attack_set_default_values(instance, SubBruteAttackCAME12bit433); + subbrute_device_attack_set_default_values(instance, SubBruteAttackLoadFile); #else subbrute_device_attack_set_default_values(instance, SubBruteAttackCAME12bit433); #endif diff --git a/applications/plugins/subbrute/subbrute_protocols.c b/applications/plugins/subbrute/subbrute_protocols.c index c5509680b..77a0bf791 100644 --- a/applications/plugins/subbrute/subbrute_protocols.c +++ b/applications/plugins/subbrute/subbrute_protocols.c @@ -281,7 +281,7 @@ void subbrute_protocol_file_payload( furi_string_replace_at(candidate, load_index * 3, 3, subbrute_payload_byte); #ifdef FURI_DEBUG - //FURI_LOG_D(TAG, "candidate: %s, step: %lld", furi_string_get_cstr(candidate), step); + FURI_LOG_D(TAG, "candidate: %s, step: %lld", furi_string_get_cstr(candidate), step); #endif stream_clean(stream); @@ -407,7 +407,7 @@ void subbrute_protocol_file_generate_file( uint64_t subbrute_protocol_calc_max_value(SubBruteAttacks attack_type, uint8_t bits) { uint64_t max_value; if(attack_type == SubBruteAttackLoadFile) { - max_value = 0x3F; + max_value = 0xFF; } else { FuriString* max_value_s; max_value_s = furi_string_alloc();