From 1865935a9e7d335b7afff3a6a159a4fd81db1275 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 22 Oct 2018 09:30:13 +0200 Subject: i2cbench: configurable setos --- src/app/i2cbench/main.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/app/i2cbench/main.cc') diff --git a/src/app/i2cbench/main.cc b/src/app/i2cbench/main.cc index a630c6d..3237f67 100644 --- a/src/app/i2cbench/main.cc +++ b/src/app/i2cbench/main.cc @@ -22,12 +22,16 @@ #include "driver/mmsimple.h" #endif +#ifndef I2CBENCH_SETOS +#error must define I2CBENCH_SETOS +#endif + void loop(void) { #ifdef DRIVER_LM75 //kout.printf_float(lm75.getTemp()); //kout << endl; - lm75.setOS(64); + lm75.setOS(I2CBENCH_SETOS); #endif #ifdef DRIVER_AM2320 am2320.read(); -- cgit v1.2.3