Just looking over the code, I see this in? ubitx_20.ino? from? ?
All are 32 bit integers.
#########################################
/**?* These are the indices where these user changable settinngs are stored? in the EEPROM?*/
#define MASTER_CAL 0
#define LSB_CAL 4
#define USB_CAL 8
#define SIDE_TONE 12
//these are ids of the vfos as well as their offset into the eeprom storage, don't change these 'magic' values
#define VFO_A 16
#define VFO_B 20
#define CW_SIDETONE 24
#define CW_SPEED 28
###############################
MASTER_CAL and USB_CAL must be set for anything to work, probably what's messing you up.
CW_SIDETONE determines the rx freq offset when in cw mode, in addition to the CW sidetone in Hz.
CW_SPEED is 1200/wpm,? so the value of 100 makes it 12 wpm
All of the above can be adjusted within the calibration menu.
VFO_A and VFO_B can be set to some operating freq in Hz, defaults are 7150000 and 14200000
vfoA=7150000L, vfoB=14200000L
SIDE_TONE and USB_CAL never get used.
Here's some good default settings:
###############################
MASTER_CAL:? ?0
USB_CAL:? 11997000
CW_SIDETONE:? 800
CW_SPEED:? 100
###############################
Jerry, KE7ER
toggle quoted message
Show quoted text
On Sat, Mar 24, 2018 at 07:20 am, W3JDR wrote:
Does anyone have a file with the UBITX? EEPROM map as delivered from the factory? I had to replace the Nano board, but now don't have the proper EEPROM settings to get going again.