You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#defineMIN_RIT_VALUE -60 // Minimum RIT Value -1.2 kHz
#defineMAX_RIT_VALUE 60 // Maximum RIT Value +1.2 kHz
So potentially all of these would need to be changed.
However, 10Hz or less step size for RIT may be too fine for other modes, and perhaps it would be better if this was implemented as a setting.
And if its a setting, then perhaps the setting should be per mode, i.e a different setting for CW to SSB, AM and DV. (LSB and USB etc would just be grouped as the SSB setting)
I have not looked at the way that the settings are handled, but hopefully i could add a new group of settings and also add something into the UI to allow the setting to be adjusted.
The text was updated successfully, but these errors were encountered:
Adding configuration settings controlled via menu is relatively straight forward:
ui_menu.c / ui_menu_structure.c
And for persistent storage use: ui_configuration.h/.c
It is possible to store 2 8bit values in a single config value record (or one 8/16/(32) bit value.)
This is a feature request which I would like to implement, but would like some feedback before I start implementing it.
A friend of mine finds the RIT step size of 20Hz a bit too course when using CW and would like a lower setting.
I looked in the code and i can see that its hard coded to a step size of 20 and there is also a max number of steps.
UHSDR/mchf-eclipse/drivers/ui/radio_management.c
Line 593 in 37197a3
UHSDR/mchf-eclipse/drivers/ui/radio_management.c
Line 812 in 37197a3
UHSDR/mchf-eclipse/drivers/ui/ui_configuration.h
Lines 67 to 68 in 9af8ab6
So potentially all of these would need to be changed.
However, 10Hz or less step size for RIT may be too fine for other modes, and perhaps it would be better if this was implemented as a setting.
And if its a setting, then perhaps the setting should be per mode, i.e a different setting for CW to SSB, AM and DV. (LSB and USB etc would just be grouped as the SSB setting)
I have not looked at the way that the settings are handled, but hopefully i could add a new group of settings and also add something into the UI to allow the setting to be adjusted.
The text was updated successfully, but these errors were encountered: