2021-10-25 14:37:14 +00:00
|
|
|
|
#include "../subghz_i.h"
|
2021-10-27 17:37:11 +00:00
|
|
|
|
#include "../views/subghz_read_raw.h"
|
2021-10-25 14:37:14 +00:00
|
|
|
|
#include <lib/subghz/protocols/subghz_protocol_raw.h>
|
|
|
|
|
#include <lib/subghz/subghz_parser.h>
|
2021-11-24 13:59:45 +00:00
|
|
|
|
#include <lib/toolbox/path.h>
|
|
|
|
|
|
|
|
|
|
#define RAW_FILE_NAME "Raw_temp"
|
2021-10-25 14:37:14 +00:00
|
|
|
|
|
2021-10-27 17:37:11 +00:00
|
|
|
|
static void subghz_scene_read_raw_update_statusbar(void* context) {
|
2021-10-25 14:37:14 +00:00
|
|
|
|
furi_assert(context);
|
|
|
|
|
SubGhz* subghz = context;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
|
2021-11-11 12:49:19 +00:00
|
|
|
|
string_t frequency_str;
|
|
|
|
|
string_t modulation_str;
|
|
|
|
|
|
|
|
|
|
string_init(frequency_str);
|
|
|
|
|
string_init(modulation_str);
|
|
|
|
|
|
|
|
|
|
subghz_get_frequency_modulation(subghz, frequency_str, modulation_str);
|
|
|
|
|
subghz_read_raw_add_data_statusbar(
|
|
|
|
|
subghz->subghz_read_raw, string_get_cstr(frequency_str), string_get_cstr(modulation_str));
|
|
|
|
|
|
|
|
|
|
string_clear(frequency_str);
|
|
|
|
|
string_clear(modulation_str);
|
2021-10-25 14:37:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 17:37:11 +00:00
|
|
|
|
void subghz_scene_read_raw_callback(SubghzCustomEvent event, void* context) {
|
2021-10-25 14:37:14 +00:00
|
|
|
|
furi_assert(context);
|
|
|
|
|
SubGhz* subghz = context;
|
|
|
|
|
view_dispatcher_send_custom_event(subghz->view_dispatcher, event);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-24 13:59:45 +00:00
|
|
|
|
void subghz_scene_read_raw_callback_end_tx(void* context) {
|
|
|
|
|
furi_assert(context);
|
|
|
|
|
SubGhz* subghz = context;
|
|
|
|
|
view_dispatcher_send_custom_event(
|
|
|
|
|
subghz->view_dispatcher, SubghzCustomEventViewReadRAWSendStop);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 17:37:11 +00:00
|
|
|
|
void subghz_scene_read_raw_on_enter(void* context) {
|
2021-10-25 14:37:14 +00:00
|
|
|
|
SubGhz* subghz = context;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
|
2021-11-24 13:59:45 +00:00
|
|
|
|
if(subghz->txrx->rx_key_state == SubGhzRxKeyStateBack) {
|
|
|
|
|
subghz_read_raw_set_status(subghz->subghz_read_raw, SubghzReadRAWStatusIDLE);
|
2021-10-27 17:37:11 +00:00
|
|
|
|
} else {
|
2021-11-24 13:59:45 +00:00
|
|
|
|
subghz_read_raw_set_status(subghz->subghz_read_raw, SubghzReadRAWStatusStart);
|
2021-10-27 17:37:11 +00:00
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
subghz_scene_read_raw_update_statusbar(subghz);
|
|
|
|
|
subghz_read_raw_set_callback(subghz->subghz_read_raw, subghz_scene_read_raw_callback, subghz);
|
2021-10-25 14:37:14 +00:00
|
|
|
|
|
|
|
|
|
subghz->txrx->protocol_result = subghz_parser_get_by_name(subghz->txrx->parser, "RAW");
|
|
|
|
|
furi_assert(subghz->txrx->protocol_result);
|
|
|
|
|
|
|
|
|
|
subghz_worker_set_pair_callback(
|
|
|
|
|
subghz->txrx->worker, (SubGhzWorkerPairCallback)subghz_parser_raw_parse);
|
|
|
|
|
|
2021-11-24 13:59:45 +00:00
|
|
|
|
subghz_protocol_raw_file_encoder_worker_set_callback_end(
|
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result,
|
|
|
|
|
subghz_scene_read_raw_callback_end_tx,
|
|
|
|
|
subghz);
|
|
|
|
|
|
2021-10-27 17:37:11 +00:00
|
|
|
|
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewReadRAW);
|
2021-10-25 14:37:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 17:37:11 +00:00
|
|
|
|
bool subghz_scene_read_raw_on_event(void* context, SceneManagerEvent event) {
|
2021-10-25 14:37:14 +00:00
|
|
|
|
SubGhz* subghz = context;
|
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
|
switch(event.event) {
|
2021-10-27 17:37:11 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWBack:
|
2021-11-24 13:59:45 +00:00
|
|
|
|
//Stop TX
|
|
|
|
|
if(subghz->txrx->txrx_state == SubGhzTxRxStateTx) {
|
|
|
|
|
subghz_tx_stop(subghz);
|
|
|
|
|
subghz_sleep(subghz);
|
|
|
|
|
}
|
|
|
|
|
//Stop RX
|
2021-10-25 14:37:14 +00:00
|
|
|
|
if(subghz->txrx->txrx_state == SubGhzTxRxStateRx) {
|
|
|
|
|
subghz_rx_end(subghz);
|
|
|
|
|
subghz_sleep(subghz);
|
|
|
|
|
};
|
2021-11-24 13:59:45 +00:00
|
|
|
|
//Stop save file
|
2021-10-27 17:37:11 +00:00
|
|
|
|
subghz_protocol_raw_save_to_file_stop(
|
2021-10-25 14:37:14 +00:00
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result);
|
2021-11-11 12:49:19 +00:00
|
|
|
|
subghz->state_notifications = SubGhzNotificationStateIDLE;
|
2021-11-24 13:59:45 +00:00
|
|
|
|
//needed save?
|
|
|
|
|
if((subghz->txrx->rx_key_state == SubGhzRxKeyStateAddKey) ||
|
|
|
|
|
(subghz->txrx->rx_key_state == SubGhzRxKeyStateBack)) {
|
2021-10-27 17:37:11 +00:00
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateExit;
|
|
|
|
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneNeedSaving);
|
|
|
|
|
} else {
|
2021-11-24 13:59:45 +00:00
|
|
|
|
//Restore default setting
|
|
|
|
|
subghz->txrx->frequency = subghz_frequencies[subghz_frequencies_433_92];
|
|
|
|
|
subghz->txrx->preset = FuriHalSubGhzPresetOok650Async;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
scene_manager_search_and_switch_to_previous_scene(
|
|
|
|
|
subghz->scene_manager, SubGhzSceneStart);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-25 14:37:14 +00:00
|
|
|
|
return true;
|
|
|
|
|
break;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWConfig:
|
|
|
|
|
scene_manager_set_scene_state(
|
|
|
|
|
subghz->scene_manager, SubGhzSceneReadRAW, SubghzCustomEventManagerSet);
|
2021-10-25 14:37:14 +00:00
|
|
|
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneReceiverConfig);
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
2021-11-24 13:59:45 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWErase:
|
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE;
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
2021-11-26 14:01:03 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWVibro:
|
|
|
|
|
notification_message(subghz->notifications, &sequence_single_vibro);
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
2021-11-24 13:59:45 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWSendStart:
|
|
|
|
|
//set the path to read the file
|
|
|
|
|
if(strcmp(
|
|
|
|
|
subghz_protocol_raw_get_last_file_name(
|
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result),
|
|
|
|
|
"")) {
|
|
|
|
|
string_t temp_str;
|
|
|
|
|
string_init_printf(
|
|
|
|
|
temp_str,
|
|
|
|
|
"%s",
|
|
|
|
|
subghz_protocol_raw_get_last_file_name(
|
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result));
|
|
|
|
|
path_extract_filename_no_ext(string_get_cstr(temp_str), temp_str);
|
|
|
|
|
strlcpy(
|
|
|
|
|
subghz->file_name,
|
|
|
|
|
string_get_cstr(temp_str),
|
|
|
|
|
strlen(string_get_cstr(temp_str)) + 1);
|
|
|
|
|
string_printf(
|
|
|
|
|
temp_str,
|
|
|
|
|
"%s/%s%s",
|
|
|
|
|
SUBGHZ_APP_PATH_FOLDER,
|
|
|
|
|
subghz->file_name,
|
|
|
|
|
SUBGHZ_APP_EXTENSION);
|
|
|
|
|
|
|
|
|
|
subghz_protocol_raw_set_last_file_name(
|
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result, string_get_cstr(temp_str));
|
|
|
|
|
string_clear(temp_str);
|
|
|
|
|
//start send
|
|
|
|
|
subghz->state_notifications = SubGhzNotificationStateIDLE;
|
|
|
|
|
if(subghz->txrx->txrx_state == SubGhzTxRxStateRx) {
|
|
|
|
|
subghz_rx_end(subghz);
|
|
|
|
|
}
|
|
|
|
|
if((subghz->txrx->txrx_state == SubGhzTxRxStateIDLE) ||
|
|
|
|
|
(subghz->txrx->txrx_state == SubGhzTxRxStateSleep)) {
|
|
|
|
|
if(!subghz_tx_start(subghz)) {
|
|
|
|
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneShowOnlyRx);
|
|
|
|
|
} else {
|
|
|
|
|
subghz->state_notifications = SubGhzNotificationStateTX;
|
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateAddKey;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
|
|
|
|
case SubghzCustomEventViewReadRAWSendStop:
|
|
|
|
|
subghz->state_notifications = SubGhzNotificationStateIDLE;
|
|
|
|
|
if(subghz->txrx->txrx_state == SubGhzTxRxStateTx) {
|
|
|
|
|
subghz_tx_stop(subghz);
|
|
|
|
|
subghz_sleep(subghz);
|
|
|
|
|
}
|
|
|
|
|
subghz_read_raw_stop_send(subghz->subghz_read_raw);
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWIDLE:
|
2021-10-25 14:37:14 +00:00
|
|
|
|
if(subghz->txrx->txrx_state == SubGhzTxRxStateRx) {
|
|
|
|
|
subghz_rx_end(subghz);
|
|
|
|
|
subghz_sleep(subghz);
|
|
|
|
|
};
|
2021-10-27 17:37:11 +00:00
|
|
|
|
subghz_protocol_raw_save_to_file_stop(
|
2021-10-25 14:37:14 +00:00
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result);
|
2021-11-11 12:49:19 +00:00
|
|
|
|
subghz->state_notifications = SubGhzNotificationStateIDLE;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
|
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateAddKey;
|
|
|
|
|
|
2021-10-25 14:37:14 +00:00
|
|
|
|
return true;
|
|
|
|
|
break;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWREC:
|
|
|
|
|
|
|
|
|
|
if(subghz->txrx->rx_key_state != SubGhzRxKeyStateIDLE) {
|
|
|
|
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneNeedSaving);
|
2021-10-25 14:37:14 +00:00
|
|
|
|
} else {
|
2021-11-11 12:49:19 +00:00
|
|
|
|
subghz_get_preset_name(subghz, subghz->error_str);
|
2021-10-27 17:37:11 +00:00
|
|
|
|
if(subghz_protocol_raw_save_to_file_init(
|
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result,
|
2021-11-24 13:59:45 +00:00
|
|
|
|
RAW_FILE_NAME,
|
2021-10-27 17:37:11 +00:00
|
|
|
|
subghz->txrx->frequency,
|
2021-11-11 12:49:19 +00:00
|
|
|
|
string_get_cstr(subghz->error_str))) {
|
2021-10-27 17:37:11 +00:00
|
|
|
|
if((subghz->txrx->txrx_state == SubGhzTxRxStateIDLE) ||
|
|
|
|
|
(subghz->txrx->txrx_state == SubGhzTxRxStateSleep)) {
|
|
|
|
|
subghz_begin(subghz, subghz->txrx->preset);
|
|
|
|
|
subghz_rx(subghz, subghz->txrx->frequency);
|
|
|
|
|
}
|
2021-11-11 12:49:19 +00:00
|
|
|
|
subghz->state_notifications = SubGhzNotificationStateRX;
|
2021-10-27 17:37:11 +00:00
|
|
|
|
} else {
|
|
|
|
|
string_set(subghz->error_str, "No SD card");
|
|
|
|
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneShowError);
|
|
|
|
|
}
|
2021-10-25 14:37:14 +00:00
|
|
|
|
}
|
2021-10-27 17:37:11 +00:00
|
|
|
|
|
2021-10-25 14:37:14 +00:00
|
|
|
|
return true;
|
|
|
|
|
break;
|
2021-11-24 13:59:45 +00:00
|
|
|
|
case SubghzCustomEventViewReadRAWSave:
|
2021-10-25 14:37:14 +00:00
|
|
|
|
if(strcmp(
|
2021-11-11 12:49:19 +00:00
|
|
|
|
subghz_protocol_raw_get_last_file_name(
|
2021-10-25 14:37:14 +00:00
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result),
|
|
|
|
|
"")) {
|
2021-11-24 13:59:45 +00:00
|
|
|
|
string_t temp_str;
|
|
|
|
|
string_init_printf(
|
|
|
|
|
temp_str,
|
|
|
|
|
"%s",
|
|
|
|
|
subghz_protocol_raw_get_last_file_name(
|
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result));
|
|
|
|
|
path_extract_filename_no_ext(string_get_cstr(temp_str), temp_str);
|
2021-10-25 14:37:14 +00:00
|
|
|
|
strlcpy(
|
|
|
|
|
subghz->file_name,
|
2021-11-24 13:59:45 +00:00
|
|
|
|
string_get_cstr(temp_str),
|
|
|
|
|
strlen(string_get_cstr(temp_str)) + 1);
|
|
|
|
|
|
2021-10-25 14:37:14 +00:00
|
|
|
|
//set the path to read the file
|
2021-11-24 13:59:45 +00:00
|
|
|
|
string_printf(
|
2021-10-25 14:37:14 +00:00
|
|
|
|
temp_str,
|
|
|
|
|
"%s/%s%s",
|
|
|
|
|
SUBGHZ_APP_PATH_FOLDER,
|
|
|
|
|
subghz->file_name,
|
|
|
|
|
SUBGHZ_APP_EXTENSION);
|
2021-11-11 12:49:19 +00:00
|
|
|
|
subghz_protocol_raw_set_last_file_name(
|
2021-10-25 14:37:14 +00:00
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result, string_get_cstr(temp_str));
|
|
|
|
|
string_clear(temp_str);
|
|
|
|
|
|
2021-11-24 13:59:45 +00:00
|
|
|
|
scene_manager_set_scene_state(
|
|
|
|
|
subghz->scene_manager, SubGhzSceneReadRAW, SubghzCustomEventManagerSet);
|
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateBack;
|
|
|
|
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneSaveName);
|
2021-10-25 14:37:14 +00:00
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else if(event.type == SceneManagerEventTypeTick) {
|
|
|
|
|
switch(subghz->state_notifications) {
|
2021-11-11 12:49:19 +00:00
|
|
|
|
case SubGhzNotificationStateRX:
|
2021-10-25 14:37:14 +00:00
|
|
|
|
notification_message(subghz->notifications, &sequence_blink_blue_10);
|
2021-10-27 17:37:11 +00:00
|
|
|
|
subghz_read_raw_update_sample_write(
|
|
|
|
|
subghz->subghz_read_raw,
|
|
|
|
|
subghz_protocol_raw_get_sample_write(
|
2021-10-25 14:37:14 +00:00
|
|
|
|
(SubGhzProtocolRAW*)subghz->txrx->protocol_result));
|
2021-10-27 17:37:11 +00:00
|
|
|
|
subghz_read_raw_add_data_rssi(subghz->subghz_read_raw, furi_hal_subghz_get_rssi());
|
2021-10-25 14:37:14 +00:00
|
|
|
|
break;
|
2021-11-24 13:59:45 +00:00
|
|
|
|
case SubGhzNotificationStateTX:
|
|
|
|
|
notification_message(subghz->notifications, &sequence_blink_green_10);
|
|
|
|
|
subghz_read_raw_update_sin(subghz->subghz_read_raw);
|
|
|
|
|
break;
|
2021-10-25 14:37:14 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 17:37:11 +00:00
|
|
|
|
void subghz_scene_read_raw_on_exit(void* context) {
|
2021-10-25 14:37:14 +00:00
|
|
|
|
SubGhz* subghz = context;
|
|
|
|
|
|
|
|
|
|
//Stop CC1101
|
|
|
|
|
if(subghz->txrx->txrx_state == SubGhzTxRxStateRx) {
|
|
|
|
|
subghz_rx_end(subghz);
|
|
|
|
|
subghz_sleep(subghz);
|
|
|
|
|
};
|
2021-11-11 12:49:19 +00:00
|
|
|
|
subghz->state_notifications = SubGhzNotificationStateIDLE;
|
2021-10-25 14:37:14 +00:00
|
|
|
|
|
|
|
|
|
//Сallback restoration
|
|
|
|
|
subghz_worker_set_pair_callback(
|
|
|
|
|
subghz->txrx->worker, (SubGhzWorkerPairCallback)subghz_parser_parse);
|
|
|
|
|
}
|