mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-21 12:21:49 +03:00
8c93695d01
* SubGhz: add CC1101 Ext driver * SubGhz: move TIM2 -> TIM17 use cc1101_ext * FuriHal: SPI move channel DMA 3,4 -> 6.7 * Documentation: fix font * SubGhz: add work with SubGhz devices by link to device * SubGhz: add support switching external/internal cc1101 "subghz chat" * SubGhz: add support switching external/internal cc1101 "subghz tx" and "subghz rx" * SubGhz: add "Radio Settings" scene * SubGhz: add icon * SubGhz: add supported CC1101 external module in SubGhz app * SubGhz: fix check frequency supported radio device * SubGhz: fix clang-formatted * Sughz: move dirver CC1101_Ext to lib , compile cmd ./fbt launch_app APPSRC=radio_device_cc1101_ext * SubGhz: fix CLI * SubGhz: fix PVS * SubGhz: delete comments * SubGhz: fix unit_test * Format sources * Update api symbols and drivers targets * Drivers: find proper place for target option * SubGhz: external device connected method naming * Format sources * SubGhz: fix module selection menu, when external is not connected * SubGhz: fix furi_assert(device); * SubGhz: fix split h and c * SubGhz: furi_hal_subghz remove preset load function by name * SubGhz: deleted comments * Format Sources * SubGhz: add some consts and fix unit tests * Sync API Symbols Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
71 lines
2.4 KiB
C
71 lines
2.4 KiB
C
#include "../subghz_i.h"
|
|
#include <lib/toolbox/value_index.h>
|
|
#include <applications/drivers/subghz/cc1101_ext/cc1101_ext_interconnect.h>
|
|
|
|
enum SubGhzRadioSettingIndex {
|
|
SubGhzRadioSettingIndexDevice,
|
|
};
|
|
|
|
#define RADIO_DEVICE_COUNT 2
|
|
const char* const radio_device_text[RADIO_DEVICE_COUNT] = {
|
|
"Internal",
|
|
"External",
|
|
};
|
|
|
|
const uint32_t radio_device_value[RADIO_DEVICE_COUNT] = {
|
|
SubGhzRadioDeviceTypeInternal,
|
|
SubGhzRadioDeviceTypeExternalCC1101,
|
|
};
|
|
|
|
static void subghz_scene_radio_settings_set_device(VariableItem* item) {
|
|
SubGhz* subghz = variable_item_get_context(item);
|
|
uint8_t index = variable_item_get_current_value_index(item);
|
|
|
|
if(!subghz_txrx_radio_device_is_external_connected(
|
|
subghz->txrx, SUBGHZ_DEVICE_CC1101_EXT_NAME) &&
|
|
radio_device_value[index] == SubGhzRadioDeviceTypeExternalCC1101) {
|
|
//ToDo correct if there is more than 1 module
|
|
index = 0;
|
|
}
|
|
variable_item_set_current_value_text(item, radio_device_text[index]);
|
|
subghz_txrx_radio_device_set(subghz->txrx, radio_device_value[index]);
|
|
}
|
|
|
|
void subghz_scene_radio_settings_on_enter(void* context) {
|
|
SubGhz* subghz = context;
|
|
VariableItem* item;
|
|
uint8_t value_index;
|
|
|
|
uint8_t value_count_device = RADIO_DEVICE_COUNT;
|
|
if(subghz_txrx_radio_device_get(subghz->txrx) == SubGhzRadioDeviceTypeInternal &&
|
|
!subghz_txrx_radio_device_is_external_connected(subghz->txrx, SUBGHZ_DEVICE_CC1101_EXT_NAME))
|
|
value_count_device = 1;
|
|
item = variable_item_list_add(
|
|
subghz->variable_item_list,
|
|
"Module",
|
|
value_count_device,
|
|
subghz_scene_radio_settings_set_device,
|
|
subghz);
|
|
value_index = value_index_uint32(
|
|
subghz_txrx_radio_device_get(subghz->txrx), radio_device_value, value_count_device);
|
|
variable_item_set_current_value_index(item, value_index);
|
|
variable_item_set_current_value_text(item, radio_device_text[value_index]);
|
|
|
|
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdVariableItemList);
|
|
}
|
|
|
|
bool subghz_scene_radio_settings_on_event(void* context, SceneManagerEvent event) {
|
|
SubGhz* subghz = context;
|
|
bool consumed = false;
|
|
UNUSED(subghz);
|
|
UNUSED(event);
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void subghz_scene_radio_settings_on_exit(void* context) {
|
|
SubGhz* subghz = context;
|
|
variable_item_list_set_selected_item(subghz->variable_item_list, 0);
|
|
variable_item_list_reset(subghz->variable_item_list);
|
|
}
|