We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d1b9c commit 834589dCopy full SHA for 834589d
software/o_c_REV/APP_REFS.ino
@@ -298,7 +298,7 @@ public:
298
for (uint8_t i = 0; i < kHistoryDepth; i++)
299
average += history[i];
300
// ... and derive target frequencies
301
- float target_frequency = round(((auto_frequency_ + average) / (float)(kHistoryDepth + 1))); // 0V
+ float target_frequency = ((auto_frequency_ + average) / (float)(kHistoryDepth + 1)); // 0V
302
303
#ifdef BUCHLA_SUPPORT
304
switch(OC::DAC::get_voltage_scaling(dac_channel_)) {
software/o_c_REV/OC_version.h
@@ -3,6 +3,5 @@
3
//
4
// GENERATED FILE, DO NOT EDIT
5
6
-// #define OC_VERSION "UNDEFINED"
7
-#define OC_VERSION "v1.3.0_beta3"
+#define OC_VERSION "v1.3.0"
8
#endif
0 commit comments