I'm using the sensor API (bme68x.h) and wondering how can I access the standard heater profile? The starter code has: uint16_t temp_prof[PROFILE_LEN] = { 320, 100, 100, 100, 200, 200, 200, 320, 320, 320 }; uint16_t mul_prof[PROFILE_LEN] = { 5, 2, 10, 30, 5, 5, 5, 5, 5, 5 }; but this is not the standard heater profile, as the durations here are much shorter (the profile lasts 87 milliseconds, but the standard heater profile above lasts 10+ seconds). My questions are: 1. Is there a way to access the standard heater profile which is built-in to the chip's ASIC, according to the datasheet? 2. Does it even matter to use the standard, 10 second heater profile vs. the shortened, 87ms version listed above?
... View more