Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
Maximum amount of sweep points were increased. 16bit variable to 32bit variable.
Version: 1.0.8
  • Loading branch information
berjk committed Dec 10, 2020
1 parent 81f92e4 commit f71aeda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions erasynth_micro/erasynth_micro.ino
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ uint64_t sweepStopFrequency = 2e9;
uint64_t sweepStepFrequency = 100e6;
uint64_t sweepPoints = 100;
uint32_t sweepDwellTime = 1000000;
int sweepIndex = 0;
int32_t sweepIndex = 0;
uint8_t sweepType = 0;
bool isSweepOn = false;

Expand All @@ -137,7 +137,7 @@ uint16_t eepromAddr = 0;
bool isExtModAttch = false;
float fskMultiplier = 0;
bool nextFreq = false;
char firmwareVersion[VERSION_SIZE] = "v1.0.7";
char firmwareVersion[VERSION_SIZE] = "v1.0.8";
bool isUploadCode = false;

uint8_t decimationValue = 0;
Expand Down Expand Up @@ -1902,4 +1902,4 @@ void writeToExEEPROM(uint16_t address, uint8_t data)
digitalWrite(eeprom_LE, HIGH);
sei();
delay(10);
}
}

0 comments on commit f71aeda

Please sign in to comment.