0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-27 22:01:26 +03:00
uv-k5-firmware-custom/frequencies.h

113 lines
2.8 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 FREQUENCIES_H
#define FREQUENCIES_H
#include <stdint.h>
2023-10-12 11:03:58 +01:00
#include "frequencies.h"
#include "misc.h"
2023-10-12 11:03:58 +01:00
enum frequency_band_e {
2023-10-02 14:13:27 +01:00
BAND_NONE = -1,
2023-09-28 10:17:45 +01:00
BAND1_50MHz = 0,
2023-09-09 08:03:56 +01:00
BAND2_108MHz,
2023-10-22 22:57:47 +01:00
BAND3_137MHz,
2023-09-09 08:03:56 +01:00
BAND4_174MHz,
BAND5_350MHz,
BAND6_400MHz,
2023-09-15 12:31:30 +01:00
BAND7_470MHz
2023-09-09 08:03:56 +01:00
};
typedef enum frequency_band_e frequency_band_t;
typedef struct {
const uint32_t lower;
const uint32_t upper;
} freq_band_table_t;
2023-11-08 11:27:26 +00:00
typedef struct {
const uint32_t lower;
const uint32_t upper;
const uint16_t step_size;
} __attribute__((packed)) freq_scan_range_table_t;
extern uint32_t g_aircopy_freq;
2023-10-22 22:57:47 +01:00
extern const freq_band_table_t AIR_BAND;
extern const freq_band_table_t BX4819_BAND1;
extern const freq_band_table_t BX4819_BAND2;
extern const freq_band_table_t FREQ_BAND_TABLE[7];
2023-09-09 08:03:56 +01:00
// 250, 500, 625, 1000, 1250, 2500, 833, 1, 5, 10, 25, 50, 100, 125, 1500, 3000, 5000, 10000, 12500, 25000, 50000
enum step_setting_e {
STEP_2_5kHz = 0,
STEP_5_0kHz,
STEP_6_25kHz,
STEP_10_0kHz,
STEP_12_5kHz,
STEP_25_0kHz,
STEP_8_33kHz,
2023-11-14 06:44:52 +00:00
STEP_10Hz,
STEP_50Hz,
STEP_100Hz,
STEP_250Hz,
STEP_500Hz,
STEP_1kHz,
STEP_1_25kHz,
STEP_15kHz,
STEP_30kHz,
STEP_50kHz,
STEP_100kHz,
STEP_125kHz,
STEP_250kHz,
STEP_500kHz
};
typedef enum step_setting_e step_setting_t;
2023-11-24 08:16:38 +00:00
extern const uint16_t STEP_FREQ_TABLE[16];
extern uint16_t step_freq_table_sorted[ARRAY_SIZE(STEP_FREQ_TABLE)];
2023-10-02 19:23:37 +01:00
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_NOAA
extern const uint32_t NOAA_FREQUENCY_TABLE[10];
2023-09-09 08:03:56 +01:00
#endif
// ***********
unsigned int FREQUENCY_get_step_index(const unsigned int step_size);
void FREQUENCY_init(void);
frequency_band_t FREQUENCY_GetBand(uint32_t Frequency);
2023-11-23 20:43:13 +00:00
unsigned int FREQUENCY_band_segment(const uint32_t freq);
uint8_t FREQUENCY_CalculateOutputPower(const int16_t low_tx_pwr, const int32_t mid_tx_pwr, const int16_t high_tx_pwr, const uint32_t freq);
2023-10-23 10:42:51 +01:00
uint32_t FREQUENCY_floor_to_step(uint32_t freq, const uint32_t step_size, const uint32_t lower, const uint32_t upper);
int FREQUENCY_tx_freq_check(const uint32_t Frequency);
int FREQUENCY_rx_freq_check(const uint32_t Frequency);
2023-11-08 11:27:26 +00:00
#ifdef ENABLE_SCAN_RANGES
void FREQUENCY_scan_range(const uint32_t freq, uint32_t *lower, uint32_t *upper, uint32_t *step_size);
#endif
// ***********
2023-09-09 08:03:56 +01:00
#endif