Minor improvements of code example.

Rene 'Renne' Bartsch 2018-07-12 17:49:48 +02:00
parent 81c007ead4
commit f32f00f8ae
1 changed files with 6 additions and 2 deletions

@ -11,6 +11,9 @@ Conditional compiling of a sensor driver is achieved by commenting/uncommenting
Any sensor driver needs a callback function following the scheme
```
// Conditional compilation of driver
#ifdef USE_<driver_name>
// Define driver ID
#define XSNS_<driver_ID>
@ -27,7 +30,7 @@ Any sensor driver needs a callback function following the scheme
*/
boolean Xsns<driverID>(byte callback_id) {
// ???
// Set return value to `false`
boolean result = false;
// Check if I2C interface mode
@ -72,11 +75,12 @@ boolean Xsns<driverID>(byte callback_id) {
case FUNC_FREE_MEM
break;
}
// } // i2c_flg
// } // if(i2c_flg)
// Return boolean result
return result;
}
#endif // USE_<driver_name>
```