Up version number and default to clock correction factor 0

This commit is contained in:
sanni 2021-01-31 13:31:23 +01:00
parent 2e3757bc71
commit 1bf1d2b720
3 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
/**********************************************************************************
Cartridge Reader for Arduino Mega2560
Date: 28.10.2020
Version: 5.5
Date: 31.01.2021
Version: 5.6
SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/adafruit/Adafruit_SSD1306
@ -43,7 +43,7 @@
**********************************************************************************/
#include <SdFat.h>
char ver[5] = "5.5";
char ver[5] = "5.6";
#include "options.h"

View File

@ -610,7 +610,7 @@ void setup_SFM() {
if (clock_offset > INT32_MIN) {
clockgen.init(SI5351_CRYSTAL_LOAD_8PF, 0, clock_offset);
} else {
clockgen.init(SI5351_CRYSTAL_LOAD_8PF, 0, -16000);
clockgen.init(SI5351_CRYSTAL_LOAD_8PF, 0, 0);
}
clockgen.set_pll(SI5351_PLL_FIXED, SI5351_PLLA);
clockgen.set_pll(SI5351_PLL_FIXED, SI5351_PLLB);

View File

@ -387,7 +387,7 @@ void setup_Snes() {
if (clock_offset > INT32_MIN) {
clockgen.init(SI5351_CRYSTAL_LOAD_8PF, 0, clock_offset);
} else {
clockgen.init(SI5351_CRYSTAL_LOAD_8PF, 0, -16000);
clockgen.init(SI5351_CRYSTAL_LOAD_8PF, 0, 0);
}
// Set clocks to 4Mhz/1Mhz for better SA-1 unlocking