0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 14:21:25 +03:00

514 lines
12 KiB
C
Raw Normal View History

2023-09-09 08:03:56 +01:00
/* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SETTINGS_H
#define SETTINGS_H
#include <stdbool.h>
#include <stdint.h>
2023-09-09 09:01:52 +01:00
#include "frequencies.h"
2023-09-09 08:03:56 +01:00
#include "radio.h"
2023-10-08 17:14:13 +01:00
enum pwr_on_display_mode_e {
PWR_ON_DISPLAY_MODE_FULL_SCREEN = 0,
PWR_ON_DISPLAY_MODE_MESSAGE,
PWR_ON_DISPLAY_MODE_VOLTAGE,
PWR_ON_DISPLAY_MODE_NONE
2023-09-09 08:03:56 +01:00
};
2023-10-08 17:14:13 +01:00
typedef enum pwr_on_display_mode_e pwr_on_display_mode_t;
2023-09-09 08:03:56 +01:00
enum {
2023-09-09 09:01:52 +01:00
F_LOCK_OFF = 0,
F_LOCK_FCC,
F_LOCK_CE,
F_LOCK_GB,
F_LOCK_430,
F_LOCK_438
2023-09-09 08:03:56 +01:00
};
enum {
2023-09-09 09:01:52 +01:00
SCAN_RESUME_TO = 0,
SCAN_RESUME_CO,
SCAN_RESUME_SE
2023-09-09 08:03:56 +01:00
};
enum {
2023-09-09 09:01:52 +01:00
CROSS_BAND_OFF = 0,
CROSS_BAND_CHAN_A,
CROSS_BAND_CHAN_B
2023-09-09 08:03:56 +01:00
};
enum {
2023-09-09 09:01:52 +01:00
DUAL_WATCH_OFF = 0,
DUAL_WATCH_CHAN_A,
DUAL_WATCH_CHAN_B
2023-09-09 08:03:56 +01:00
};
enum {
2023-10-08 17:14:13 +01:00
TX_OFFSET_FREQ_DIR_OFF = 0,
TX_OFFSET_FREQ_DIR_ADD,
TX_OFFSET_FREQ_DIR_SUB
2023-09-09 08:03:56 +01:00
};
enum {
2023-09-09 09:01:52 +01:00
OUTPUT_POWER_LOW = 0,
OUTPUT_POWER_MID,
OUTPUT_POWER_HIGH
2023-09-09 08:03:56 +01:00
};
2023-09-12 11:01:34 +01:00
enum {
ACTION_OPT_NONE = 0,
ACTION_OPT_FLASHLIGHT,
ACTION_OPT_POWER,
ACTION_OPT_MONITOR,
ACTION_OPT_SCAN,
ACTION_OPT_VOX,
ACTION_OPT_ALARM,
ACTION_OPT_FM,
ACTION_OPT_1750,
ACTION_OPT_LEN
};
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
enum voice_prompt_e
2023-09-09 08:03:56 +01:00
{
2023-09-09 09:01:52 +01:00
VOICE_PROMPT_OFF = 0,
VOICE_PROMPT_CHINESE,
VOICE_PROMPT_ENGLISH
2023-09-09 08:03:56 +01:00
};
2023-10-08 17:14:13 +01:00
typedef enum voice_prompt_e voice_prompt_t;
2023-09-09 08:03:56 +01:00
#endif
2023-10-08 17:14:13 +01:00
enum alarm_mode_e {
2023-10-08 20:23:37 +01:00
ALARM_MODE_SITE = 0,
2023-09-09 09:01:52 +01:00
ALARM_MODE_TONE
2023-09-09 08:03:56 +01:00
};
2023-10-08 17:14:13 +01:00
typedef enum alarm_mode_e alarm_mode_t;
2023-09-09 08:03:56 +01:00
2023-10-08 17:14:13 +01:00
enum roger_mode_e {
2023-09-09 09:01:52 +01:00
ROGER_MODE_OFF = 0,
ROGER_MODE_ROGER,
ROGER_MODE_MDC
2023-09-09 08:03:56 +01:00
};
2023-10-08 17:14:13 +01:00
typedef enum roger_mode_e roger_mode_t;
2023-09-09 08:03:56 +01:00
2023-10-08 17:14:13 +01:00
enum mdf_display_mode_e {
2023-09-09 09:01:52 +01:00
MDF_FREQUENCY = 0,
MDF_CHANNEL,
2023-09-10 09:57:49 +01:00
MDF_NAME,
MDF_NAME_FREQ
2023-09-09 08:03:56 +01:00
};
2023-10-08 17:14:13 +01:00
typedef enum mdf_display_mode_e mdf_display_mode_t;
2023-09-09 08:03:56 +01:00
// ************************************************
2023-10-14 09:43:53 +01:00
// unused bits are all '0's if the channel is used,
// unless the channel is unused, in which case all 16 bytes are 0xff
typedef struct {
// [0]
2023-10-14 00:10:03 +01:00
uint32_t frequency; //
// [4]
2023-10-14 00:10:03 +01:00
uint32_t offset; //
// [8]
2023-10-14 00:10:03 +01:00
uint8_t rx_ctcss_cdcss_code; //
// [9]
uint8_t tx_ctcss_cdcss_code; //
// [10]
2023-10-14 09:43:53 +01:00
uint8_t rx_ctcss_cdcss_type:2; //
uint8_t unused1:2;
uint8_t tx_ctcss_cdcss_type:2; //
uint8_t unused2:2;
2023-10-14 00:10:03 +01:00
// [11]
uint8_t tx_offset_dir:2; //
2023-10-14 09:43:53 +01:00
uint8_t unused3:2;
2023-10-14 00:10:03 +01:00
uint8_t am_mode:1; //
2023-10-14 09:43:53 +01:00
uint8_t unused4:3;
// [12]
2023-10-14 00:10:03 +01:00
uint8_t frequency_reverse:1; // reverse repeater
uint8_t channel_bandwidth:1; // wide/narrow
uint8_t tx_power:2; // 0, 1 or 2 .. L, M or H
uint8_t busy_channel_lockout:1; //
2023-10-14 09:43:53 +01:00
uint8_t unused5:3;
2023-10-14 00:10:03 +01:00
// [13]
uint8_t dtmf_decoding_enable:1; //
uint8_t dtmf_ptt_id_tx_mode:3; //
2023-10-14 09:43:53 +01:00
uint8_t unused6:4;
2023-10-14 00:10:03 +01:00
// [14]
uint8_t step_setting:3; //
2023-10-14 09:43:53 +01:00
uint8_t unused7:5;
2023-10-14 00:10:03 +01:00
// [15]
uint8_t scrambler:4; //
2023-10-14 09:43:53 +01:00
uint8_t unused8:4;
} __attribute__((packed)) t_channel;
// 512 bytes
typedef struct {
// 0x1E00
struct {
uint8_t open_rssi_thresh[10];
uint8_t unused1[6];
uint8_t close_rssi_thresh[10];
uint8_t unused2[6];
uint8_t open_noise_thresh[10];
uint8_t unused3[6];
uint8_t close_noise_thresh[10];
uint8_t unused4[6];
uint8_t open_glitch_thresh[10];
uint8_t unused5[6];
uint8_t close_glitch_thresh[10];
uint8_t unused6[6];
} __attribute__((packed)) uhf_squelch[6];
// 0x1E60
struct {
uint8_t open_rssi_thresh[10];
uint8_t unused1[6];
uint8_t close_rssi_thresh[10];
uint8_t unused2[6];
uint8_t open_noise_thresh[10];
uint8_t unused3[6];
uint8_t close_noise_thresh[10];
uint8_t unused4[6];
uint8_t open_glitch_thresh[10];
uint8_t unused5[6];
uint8_t close_glitch_thresh[10];
uint8_t unused6[6];
} __attribute__((packed)) vhf_squelch[6];
// 0x1EC0
2023-10-14 09:43:53 +01:00
uint16_t rssi_uhf[4];
uint16_t rssi_vhf[4];
// 0x1ED0
struct
{
uint8_t low_tx_pwr[3];
uint8_t mid_tx_pwr[3];
uint8_t high_tx_pwr[3];
uint8_t unused[7];
} band_setting[7];
// 0x1F40
uint16_t battery[6];
uint8_t unused1[4];
// 0x1F50
struct
{
uint16_t threshold[10];
uint8_t unused[4];
} __attribute__((packed)) vox[2];
// 0x1F80
uint8_t mic_gain_dB2[5];
uint8_t unused4[3];
int16_t bk4819_xtal_freq_low;
uint16_t unknown2;
uint16_t unknown3;
uint8_t volume_gain;
uint8_t dac_gain;
uint8_t unused5[8 * 10];
} __attribute__((packed)) t_calibration;
typedef struct {
// 0x0000
2023-10-14 09:43:53 +01:00
t_channel channel[200]; // unused channels are set to all '0xff'
2023-10-14 00:10:03 +01:00
// 0x0C80
t_channel vfo[14];
// 0x0D60
struct {
uint8_t band:4;
uint8_t compander:2;
uint8_t scanlist2:1;
uint8_t scanlist1:1;
} __attribute__((packed)) channel_attr[200];
uint8_t unused1[8];
uint8_t unused2[16];
// 0x0E40
uint16_t fm_channel[20];
uint8_t unused3[8];
// 0x0E70
uint8_t call1;
uint8_t squelch;
uint8_t tot;
uint8_t noaa_auto_scan;
uint8_t key_lock;
uint8_t vox_switch;
uint8_t vox_level;
uint8_t mic_sensitivity;
uint8_t unused4;
uint8_t mdf;
uint8_t wx;
uint8_t battery_save;
uint8_t tdr;
uint8_t backlight;
uint8_t site;
uint8_t vfo_open;
// 0x0E80
uint8_t screen_channel_a;
uint8_t channel_a;
uint8_t freq_channel_a;
uint8_t screen_channel_b;
uint8_t channel_b;
uint8_t freq_channel_b;
uint8_t noaa_channel_a;
uint8_t noaa_channel_b;
uint8_t fm_selected_frequency;
uint8_t fm_selected_channel;
uint8_t fm_is_channel_mode;
uint8_t unused5[5];
// 0x0E90
uint8_t beep_control;
uint8_t key1_short;
uint8_t key1_long;
uint8_t key2_short;
uint8_t key2_long;
uint8_t sc_rev;
uint8_t auto_lock;
uint8_t display_mode;
uint32_t power_on_password;
uint8_t unused6[4];
// 0x0EA0
uint8_t voice_prompt;
uint8_t unused7[7];
uint8_t alarm_mode;
uint8_t roger_mode;
uint8_t rp_ste;
uint8_t tx_channel;
uint8_t unused8[4];
// 0x0EB0
uint8_t welcome_line1[16];
uint8_t welcome_line2[16];
// 0x0ED0
uint8_t dtmf_side_tone;
uint8_t dtmf_separate_code;
uint8_t dtmf_group_call_code;
uint8_t dtmf_rsp;
uint8_t dtmf_auto_reset_time;
uint8_t dtmf_preload_time;
uint8_t dtmf_first_code_time;
uint8_t dtmf_hash_code_time;
uint8_t dtmf_code_time;
uint8_t dtmf_code_interval;
uint8_t dtmf_permit_kill;
uint8_t unused9[5];
// 0x0EE0
uint8_t dtmf_ani_id[8];
uint8_t dtmf_kill_code[8];
uint8_t dtmf_revive_code[8];
uint8_t dtmf_key_up_code[16];
uint8_t dtmf_key_down_code[16];
uint8_t s_list_default;
uint8_t scanlist1_enable;
uint8_t scanlist1_channel1;
uint8_t scanlist1_channel2;
uint8_t scanlist2_enable;
uint8_t scanlist2_channel1;
uint8_t scanlist2_channel2;
uint8_t unused10;
// 0x0F20
uint8_t unused11[8];
// 0x0F30
uint8_t aes_key[16];
// 0x0F40
uint8_t f_lock;
uint8_t enable_tx_350;
uint8_t killed;
uint8_t enable_tx_200;
uint8_t enable_tx_500;
uint8_t enable_350;
uint8_t enable_scrambler;
#if 0
// QS
uint8_t unused12[9];
#else
// 1of11
uint8_t tx_enable:1;
uint8_t dtmf_live_decoder:1;
uint8_t battery_text:2;
uint8_t mic_bar:1;
uint8_t am_fix:1;
uint8_t backlight_on_tx_rx:2;
uint8_t unused12[8];
#endif
// 0x0F50
char channel_name[200][16];
// 0x1BD0
uint8_t unused13[16];
uint8_t unused14[16];
uint8_t unused15[16];
// 0x1C00
uint8_t dtmf_contact[16][16];
// 0x1D00
2023-10-14 00:10:03 +01:00
uint8_t unused16[256];
// 0x1E00
t_calibration calibration;
} __attribute__((packed)) t_eeprom;
// ************************************************
2023-09-09 08:03:56 +01:00
typedef struct {
2023-10-08 17:14:13 +01:00
uint8_t screen_channel[2];
uint8_t freq_channel[2];
uint8_t user_channel[2];
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_NOAA
2023-10-08 17:14:13 +01:00
uint8_t noaa_channel[2];
2023-09-09 08:03:56 +01:00
#endif
2023-10-08 17:14:13 +01:00
uint8_t rx_vfo;
uint8_t tx_vfo;
2023-09-09 08:03:56 +01:00
uint8_t field7_0xa;
uint8_t field8_0xb;
#ifdef ENABLE_FMRADIO
2023-10-08 17:14:13 +01:00
uint16_t fm_selected_frequency;
uint8_t fm_selected_channel;
bool fm_is_channel_mode;
uint16_t fm_frequency_playing;
#endif
2023-10-08 17:14:13 +01:00
uint8_t squelch_level;
uint8_t tx_timeout_timer;
bool key_lock;
bool vox_switch;
uint8_t vox_level;
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
voice_prompt_t voice_prompt;
2023-09-09 08:03:56 +01:00
#endif
2023-10-08 17:14:13 +01:00
bool beep_control;
uint8_t channel_display_mode;
bool tail_note_elimination;
bool vfo_open;
uint8_t dual_watch;
uint8_t cross_vfo_rx_tx;
uint8_t battery_save;
uint8_t backlight;
uint8_t scan_resume_mode;
uint8_t scan_list_default;
bool scan_list_enabled[2];
uint8_t scan_list_priority_ch1[2];
uint8_t scan_list_priority_ch2[2];
2023-09-09 08:03:56 +01:00
2023-10-08 17:14:13 +01:00
bool auto_keypad_lock;
#if defined(ENABLE_ALARM) || defined(ENABLE_TX1750)
2023-10-08 17:14:13 +01:00
alarm_mode_t alarm_mode;
2023-09-09 09:01:52 +01:00
#endif
2023-10-08 17:14:13 +01:00
pwr_on_display_mode_t pwr_on_display_mode;
roger_mode_t roger_mode;
uint8_t repeater_tail_tone_elimination;
uint8_t key1_short_press_action;
uint8_t key1_long_press_action;
uint8_t key2_short_press_action;
uint8_t key2_long_press_action;
uint8_t mic_sensitivity;
uint8_t mic_sensitivity_tuning;
uint8_t chan_1_call;
2023-10-08 20:23:37 +01:00
char ani_dtmf_id[8];
2023-10-08 17:14:13 +01:00
char kill_code[8];
char revive_code[8];
char dtmf_key_up_code[16];
char dtmf_key_down_code[16];
2023-09-09 08:03:56 +01:00
2023-10-08 20:23:37 +01:00
char dtmf_separate_code;
char dtmf_group_call_code;
uint8_t dtmf_decode_response;
uint8_t dtmf_auto_reset_time;
uint16_t dtmf_preload_time;
uint16_t dtmf_first_code_persist_time;
uint16_t dtmf_hash_code_persist_time;
uint16_t dtmf_code_persist_time;
uint16_t dtmf_code_interval_time;
bool dtmf_side_tone;
2023-10-08 17:14:13 +01:00
bool permit_remote_kill;
int16_t BK4819_xtal_freq_low;
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_NOAA
2023-10-08 20:23:37 +01:00
bool noaa_auto_scan;
2023-09-09 08:03:56 +01:00
#endif
2023-10-08 17:14:13 +01:00
uint8_t volume_gain;
uint8_t dac_gain;
2023-10-08 20:23:37 +01:00
vfo_info_t vfo_info[2];
2023-10-08 17:14:13 +01:00
uint32_t power_on_password;
uint16_t vox1_threshold;
uint16_t vox0_threshold;
2023-10-14 09:43:53 +01:00
// uint8_t field29_0x26;
// uint8_t field30_0x27;
// uint8_t field37_0x32;
// uint8_t field38_0x33;
// uint8_t field57_0x6c;
// uint8_t field58_0x6d;
// uint8_t field60_0x7e;
// uint8_t field61_0x7f;
// uint8_t field77_0x95;
// uint8_t field78_0x96;
// uint8_t field79_0x97;
2023-09-09 08:03:56 +01:00
2023-10-08 20:23:37 +01:00
} eeprom_config_t;
2023-10-08 17:14:13 +01:00
2023-10-08 20:23:37 +01:00
extern eeprom_config_t g_eeprom;
2023-09-09 08:03:56 +01:00
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_FMRADIO
void SETTINGS_SaveFM(void);
#endif
2023-09-09 08:03:56 +01:00
void SETTINGS_SaveVfoIndices(void);
2023-10-10 23:47:05 +01:00
//void SETTINGS_restore_calibration(void);
2023-09-09 08:03:56 +01:00
void SETTINGS_SaveSettings(void);
2023-10-08 20:23:37 +01:00
void SETTINGS_SaveChannel(uint8_t Channel, uint8_t VFO, const vfo_info_t *pVFO, uint8_t Mode);
void SETTINGS_UpdateChannel(uint8_t Channel, const vfo_info_t *pVFO, bool keep);
2023-09-09 08:03:56 +01:00
#endif