mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-04-28 22:31:25 +03:00
util/main.cpp update
This commit is contained in:
parent
787d3a261e
commit
1a626f83ae
12
README.md
12
README.md
@ -39,20 +39,18 @@ ENABLE_AUDIO_BAR := 0 experimental, display an audo bar level
|
|||||||
#ENABLE_BAND_SCOPE := 1 not yet implemented - spectrum/pan-adapter
|
#ENABLE_BAND_SCOPE := 1 not yet implemented - spectrum/pan-adapter
|
||||||
```
|
```
|
||||||
|
|
||||||
# Some other changes made
|
# Some changes made from the Quansheng firmware
|
||||||
|
|
||||||
* Various Quansheng firmware bugs fixed
|
* Various Quansheng firmware bugs fixed
|
||||||
* Added new bugs
|
* Added new bugs
|
||||||
* Finer RSSI bar steps
|
|
||||||
* Mic menu includes max gain possible
|
* Mic menu includes max gain possible
|
||||||
* AM RX everywhere
|
* AM RX everywhere (left the TX as is)
|
||||||
* keypad-5/NOAA button now toggles scanlist-1 on/off for current channel when held down - IF NOAA is not used
|
* An attempt to improve the AM RX audio (demodulator getting saturated/overloaded)
|
||||||
|
* keypad-5/NOAA button now toggles scanlist-1 on/off for current channel when held down - IF NOAA not used
|
||||||
* Better backlight times (inc always on)
|
* Better backlight times (inc always on)
|
||||||
* Nicer/cleaner big numeric font than original Quansheng big numeric font
|
|
||||||
* Live DTMF decoder option, though the decoder needs some coeff tuning changes to decode other radios it seems
|
* Live DTMF decoder option, though the decoder needs some coeff tuning changes to decode other radios it seems
|
||||||
* Various menu re-wordings (trying to reduce 'WTH does that mean ?')
|
* Various menu re-wordings (trying to reduce 'WTH does that mean ?')
|
||||||
* Extra menu items (including hidden ones)
|
* ..
|
||||||
* plus others
|
|
||||||
|
|
||||||
# Compiler
|
# Compiler
|
||||||
|
|
||||||
|
@ -25,9 +25,9 @@
|
|||||||
|
|
||||||
// <9:8> = LNA Gain Short
|
// <9:8> = LNA Gain Short
|
||||||
// 3 = 0dB < original value
|
// 3 = 0dB < original value
|
||||||
// 2 = -11dB
|
// 2 = -24dB // was -11
|
||||||
// 1 = -16dB
|
// 1 = -30dB // was -16
|
||||||
// 0 = -19dB
|
// 0 = -33dB // was -19
|
||||||
//
|
//
|
||||||
// <7:5> = LNA Gain
|
// <7:5> = LNA Gain
|
||||||
// 7 = 0dB
|
// 7 = 0dB
|
||||||
@ -121,10 +121,7 @@ void __fastcall create_gain_table(const char *filename)
|
|||||||
entry.mixer_dB = mixer_dB[mixer];
|
entry.mixer_dB = mixer_dB[mixer];
|
||||||
entry.pga_dB = pga_dB[pga];
|
entry.pga_dB = pga_dB[pga];
|
||||||
|
|
||||||
entry.sum_dB = lna_short_dB[lna_short] +
|
entry.sum_dB = lna_short_dB[lna_short] + lna_dB[lna] + mixer_dB[mixer] + pga_dB[pga];
|
||||||
lna_dB[lna] +
|
|
||||||
mixer_dB[mixer] +
|
|
||||||
pga_dB[pga];
|
|
||||||
|
|
||||||
if (entry.sum_dB != orig_gain_dB)
|
if (entry.sum_dB != orig_gain_dB)
|
||||||
gain_table.push_back(entry);
|
gain_table.push_back(entry);
|
||||||
@ -227,15 +224,13 @@ void __fastcall create_gain_table(const char *filename)
|
|||||||
fprintf(file, "\n");
|
fprintf(file, "\n");
|
||||||
fprintf(file, "\tconst t_am_fix_gain_table am_fix_gain_table[] =\n");
|
fprintf(file, "\tconst t_am_fix_gain_table am_fix_gain_table[] =\n");
|
||||||
fprintf(file, "\t{\n");
|
fprintf(file, "\t{\n");
|
||||||
fprintf(file, "\t\t{.lna_short = 3, .lna = 2, .mixer = 3, .pga = 6}, // 0 0dB -14dB 0dB -3dB .. -17dB original\n");
|
fprintf(file, "\t\t{.lna_short = 3, .lna = 2, .mixer = 3, .pga = 6}, // 0 0dB -14dB 0dB -3dB .. -17dB original\n\n");
|
||||||
fprintf(file, "\n");
|
|
||||||
|
|
||||||
for (unsigned int i = 0; i < gain_table.size(); i++)
|
for (unsigned int i = 0; i < gain_table.size(); i++)
|
||||||
{
|
{
|
||||||
char s[1024];
|
char s[1024];
|
||||||
const t_gain_table entry = gain_table[i];
|
|
||||||
|
|
||||||
// {0, 0, 0, 0}, // 00 -19dB -24dB -8dB -33dB .. -84dB
|
const t_gain_table entry = gain_table[i];
|
||||||
|
|
||||||
sprintf(s, "\t\t{%u, %u, %u, %u}, // %3u .. %3ddB %3ddB %2ddB %3ddB .. %3ddB",
|
sprintf(s, "\t\t{%u, %u, %u, %u}, // %3u .. %3ddB %3ddB %2ddB %3ddB .. %3ddB",
|
||||||
entry.lna_short,
|
entry.lna_short,
|
||||||
@ -252,13 +247,12 @@ void __fastcall create_gain_table(const char *filename)
|
|||||||
if (i == original_index)
|
if (i == original_index)
|
||||||
strcat(s, " original");
|
strcat(s, " original");
|
||||||
|
|
||||||
strcat(s, "\n");
|
fprintf(file, "%s\n", s);
|
||||||
|
|
||||||
fprintf(file, "%s", s);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(file, "\t};\n");
|
fprintf(file, "\t};\n\n");
|
||||||
fprintf(file, "\n\tconst unsigned int original_index = %u;\n", 1 + original_index);
|
|
||||||
|
fprintf(file, "\tconst unsigned int original_index = %u;\n", 1 + original_index);
|
||||||
|
|
||||||
fclose(file);
|
fclose(file);
|
||||||
}
|
}
|
||||||
@ -298,15 +292,10 @@ void __fastcall rotate_font(const char *filename1, const char *filename2)
|
|||||||
data.resize(file_size);
|
data.resize(file_size);
|
||||||
|
|
||||||
const size_t bytes_loaded = fread(&data[0], 1, file_size, file);
|
const size_t bytes_loaded = fread(&data[0], 1, file_size, file);
|
||||||
|
|
||||||
|
fclose(file);
|
||||||
|
|
||||||
if (bytes_loaded != file_size)
|
if (bytes_loaded != file_size)
|
||||||
{
|
|
||||||
fclose(file);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
fclose(file);
|
|
||||||
|
|
||||||
if (bytes_loaded != data.size())
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// ***************************
|
// ***************************
|
||||||
@ -332,14 +321,13 @@ void __fastcall rotate_font(const char *filename1, const char *filename2)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ***************************
|
// ***************************
|
||||||
// save file
|
// save the file
|
||||||
|
|
||||||
file = fopen(filename2, "wt");
|
file = fopen(filename2, "wt");
|
||||||
if (file == NULL)
|
if (file == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
fprintf(file, "const uint8_t gFontSmall[95][7] =\n");
|
fprintf(file, "const uint8_t gFontSmall[95][7] =\n");
|
||||||
// fprintf(file, "const uint8_t gFontSmall[95][6] =\n");
|
|
||||||
fprintf(file, "{\n");
|
fprintf(file, "{\n");
|
||||||
|
|
||||||
for (unsigned int i = 0; i < data.size(); )
|
for (unsigned int i = 0; i < data.size(); )
|
||||||
@ -391,4 +379,3 @@ int main(int argc, char* argv[])
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user