mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-22 02:33:10 +00:00
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);
|
||
|
}
|