Skip to content

Commit 22147ef

Browse files
V0.7.3
1 parent 162408f commit 22147ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

implementations/ARM/SimpleLogger_Scaling_ARM_USB/SimpleLogger_Scaling_ARM_USB.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// -------------------- User Settable Variables --------------------
2626
long sample_rate = 1000; //desired sampling rate in Hz. Not tested over 5000Hz
2727
int8_t hrpin = 0; //Whatever analog pin the sensor is hooked up to
28-
int8_t scale_data = 1; // Uses dynamic scaling of data when set to 1, not if set to 0
28+
int8_t scale_data = 0; // Uses dynamic scaling of data when set to 1, not if set to 0
2929

3030
// -------------------- End User Settable Variables --------------------
3131
//Don't change values from here on unless you know what you're doing

implementations/AVR/SimpleLogger_Scaling_AVR/SimpleLogger_Scaling_AVR_USB/SimpleLogger_Scaling_AVR_USB.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ int8_t hrpin = 0; //Whatever analog pin the sensor is hooked up to
2727
int8_t scale_data = 1; /*Uses dynamic scaling of data when set to 1, not if set to 0 \
2828
sampling speed over 1500Hz not recommended when scaling data
2929
on 8-bit AVR (e.g. Arduino)*/
30-
int8_t mode = 0; /*Speed mode. \
30+
int8_t mode = 1; /*Speed mode. \
3131
0 means the "sample_rate" speed will be used \
3232
1 means custom. Custom sampling rate is set through Serial after connect.\
3333
See documentation for details. */
34-
int16_t sample_rate = 100; /*should be 4Hz or more, over 2KHz on AVR not recommended.
34+
int16_t sample_rate = 1000; /*should be 4Hz or more, over 2KHz on AVR not recommended.
3535
When using adaptive scaling: over 1.5KHz not recommended on AVR.
3636
Higher speeds attainable on 32-bit chipsets.
3737
Please see documentation for suggested limits and theoretical limits*/

0 commit comments

Comments
 (0)