0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 14:48:03 +03:00

Menu text update

This commit is contained in:
OneOfEleven
2023-10-10 18:00:01 +01:00
parent 92bf3ccf57
commit d1c7d5beb6
6 changed files with 12 additions and 4 deletions

View File

@ -1673,13 +1673,13 @@ void APP_TimeSlice10ms(void)
BK4819_DisableFrequencyScan();
#if 0
g_scan_frequency = Result;
#else
#ifdef ENABLE_FREQ_CODE_ROUNDING
{ // round to nearest step multiple
const uint32_t step = STEP_FREQ_TABLE[g_step_setting];
g_scan_frequency = ((Result + (step / 2)) / step) * step;
}
#else
g_scan_frequency = Result;
#endif
if (g_scan_hit_count < 3)