Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compiler warnings under Arduino 1.8.0/ update to v2 interface for Si5351 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions raduino.ino
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void calibrate(){
// when you change it's state
if (digitalRead(CAL_BUTTON) == HIGH){
mode = MODE_NORMAL;
printLine1("Calibrated ");
printLine1((char *)"Calibrated ");

//scale the caliberation variable to 10 MHz
cal = (cal * 10000000l) / frequency;
Expand All @@ -272,13 +272,13 @@ void calibrate(){
EEPROM.write(1, ((cal >> 8) & 0xFF));
EEPROM.write(2, ((cal >> 16) & 0xFF));
EEPROM.write(3, ((cal >> 24) & 0xFF));
printLine2("Saved. ");
printLine2((char *)"Saved. ");
delay(5000);
}
else {
// while the calibration is in progress (CAL_BUTTON is held down), keep tweaking the
// frequency as read out by the knob, display the chnage in the second line
si5351.set_freq((bfo_freq + cal - frequency) * 100LL, SI5351_PLL_FIXED, SI5351_CLK2);
si5351.set_freq_manual((bfo_freq + cal - frequency) * 100LL, SI5351_PLL_FIXED, SI5351_CLK2);
sprintf(c, "offset:%d ", cal);
printLine2(c);
}
Expand Down Expand Up @@ -309,10 +309,10 @@ void setFrequency(unsigned long f){
uint64_t osc_f;

if (isUSB){
si5351.set_freq((bfo_freq + f) * 100ULL, SI5351_PLL_FIXED, SI5351_CLK2);
si5351.set_freq_manual((bfo_freq + f) * 100ULL, SI5351_PLL_FIXED, SI5351_CLK2);
}
else{
si5351.set_freq((bfo_freq - f) * 100ULL, SI5351_PLL_FIXED, SI5351_CLK2);
si5351.set_freq_manual((bfo_freq - f) * 100ULL, SI5351_PLL_FIXED, SI5351_CLK2);
}

frequency = f;
Expand Down Expand Up @@ -466,7 +466,7 @@ void checkButton(){
// if the button has been down for more thn TAP_HOLD_MILLIS, we consider it a long press
// set both VFOs to the same frequency, update the display and be done
if (duration > TAP_HOLD_MILLIS){
printLine2("VFOs reset!");
printLine2((char *)"VFOs reset!");
vfoA= vfoB = frequency;
delay(300);
updateDisplay();
Expand All @@ -491,7 +491,7 @@ void checkButton(){
vfoA = frequency;
frequency = vfoB;
}
//printLine2("VFO swap! ");
//printLine2((char *)"VFO swap! ");
delay(600);
updateDisplay();

Expand Down Expand Up @@ -561,8 +561,8 @@ void setup()

lcd.begin(16, 2);
printBuff[0] = 0;
printLine1("Raduino v1.01");
printLine2(" ");
printLine1((char *)"Raduino v1.01");
printLine2((char *)" ");

// Start serial and initialize the Si5351
Serial.begin(9600);
Expand All @@ -586,7 +586,7 @@ void setup()
digitalWrite(TX_RX, 0);
delay(500);

si5351.init(SI5351_CRYSTAL_LOAD_8PF,25000000l);
si5351.init(SI5351_CRYSTAL_LOAD_8PF,25000000l,0);

Serial.println("*Initiliazed Si5351\n");

Expand All @@ -598,7 +598,7 @@ void setup()
si5351.output_enable(SI5351_CLK1, 0);
si5351.output_enable(SI5351_CLK2, 1);
Serial.println("*Output enabled PLL\n");
si5351.set_freq(500000000l , SI5351_PLL_FIXED, SI5351_CLK2);
si5351.set_freq_manual(500000000l , SI5351_PLL_FIXED, SI5351_CLK2);

Serial.println("*Si5350 ON\n");
mode = MODE_NORMAL;
Expand All @@ -611,8 +611,8 @@ void loop(){
if (digitalRead(CAL_BUTTON) == LOW && mode == MODE_NORMAL){
mode = MODE_CALIBRATE;
si5351.set_correction(0);
printLine1("Calibrating: Set");
printLine2("to zerobeat. ");
printLine1((char *)"Calibrating: Set");
printLine2((char *)"to zerobeat. ");
delay(2000);
return;
}
Expand All @@ -628,4 +628,4 @@ void loop(){
doTuning();
delay(50);
}