Skip to content

Commit

Permalink
Travis-CI fixes
Browse files Browse the repository at this point in the history
Issue #4
  • Loading branch information
SV-Zanshin authored and SV-Zanshin committed Jan 26, 2019
1 parent d1bdd7f commit 81a0579
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/SoftSPIDemo/SoftSPIDemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const uint32_t SERIAL_SPEED = 115200; ///< Set the baud rate for Serial I/O //
const uint8_t SPI_MOSI_PIN = 51; // Master-out, Slave-in Pin
const uint8_t SPI_MISO_PIN = 50; // Master-in, Slave-out Pin
#else
/*const uint8_t SPI_CS_PIN = 10; // Pin for slave-select of BME680
const uint8_t SPI_CS_PIN = 10; // Pin for slave-select of BME680
const uint8_t SPI_SCK_PIN = 13; // Pin for clock signal
const uint8_t SPI_MOSI_PIN = 11; // Master-out, Slave-in Pin
const uint8_t SPI_MISO_PIN = 12; // Master-in, Slave-out Pin
Expand Down
2 changes: 1 addition & 1 deletion src/Zanshin_BME680.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,5 +464,5 @@ bool BME680_Class::setGas(uint16_t GasTemp, uint16_t GasMillis)
putData(BME680_GAS_DURATION_REGISTER0,durval);
putData(BME680_CONTROL_GAS_REGISTER2,(uint8_t)(gasRegister|B00010000));
} // of if-then-else turn gas measurements on or off
return true
return true;
} // of method setGas()

0 comments on commit 81a0579

Please # to comment.