Skip to content

Commit 834589d

Browse files
author
mxmxmx
committed
[OC] bump to 1.3.0
1 parent 25d1b9c commit 834589d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

software/o_c_REV/APP_REFS.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ public:
298298
for (uint8_t i = 0; i < kHistoryDepth; i++)
299299
average += history[i];
300300
// ... and derive target frequencies
301-
float target_frequency = round(((auto_frequency_ + average) / (float)(kHistoryDepth + 1))); // 0V
301+
float target_frequency = ((auto_frequency_ + average) / (float)(kHistoryDepth + 1)); // 0V
302302

303303
#ifdef BUCHLA_SUPPORT
304304
switch(OC::DAC::get_voltage_scaling(dac_channel_)) {

software/o_c_REV/OC_version.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
//
44
// GENERATED FILE, DO NOT EDIT
55
//
6-
// #define OC_VERSION "UNDEFINED"
7-
#define OC_VERSION "v1.3.0_beta3"
6+
#define OC_VERSION "v1.3.0"
87
#endif

0 commit comments

Comments
 (0)