Skip to content

Commit

Permalink
comment clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
aldwinhermanudin committed Dec 30, 2023
1 parent d12c382 commit 92bd8dc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/mbedos/test-bme688/source/bme688/BME688.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace teapotlabs {
namespace sensors {
namespace bme688 {

/* defining constexpr in header might not be the best way to replace macro */
/* NOTE: defining constexpr in header might not be the best way to replace macro */
constexpr uint8_t kBme688ChipId = 0x61;
constexpr uint8_t kBme688ChipIdAddr = 0xD0;
constexpr uint16_t kBsecTotalHeatDur = UINT16_C(140);
Expand Down Expand Up @@ -141,7 +141,7 @@ class BME688{
} bsec;
Callback callback;

// BME688 sensor specific method
/* BME688 sensor specific method */
ReturnCode InitialiseSensor();
ReturnCode SetSensorTphOverSampling( const uint8_t os_temp,
const uint8_t os_pres,
Expand All @@ -160,8 +160,7 @@ class BME688{
uint8_t GetSensorData( Bme688FetchedData &data_in,
bme68x_data &data_out );


// BSEC specific method
/* BSEC sensor specific method */
ReturnCode InitialiseBsec();
ReturnCode UpdateSubscription( bsec_virtual_sensor_t* sensor_list,
uint8_t n_sensors,
Expand Down

0 comments on commit 92bd8dc

Please sign in to comment.