-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -438,6 +438,7 @@ appendSensorDataBME680(uint8_t* buf) | |
*/ | ||
return index; | ||
} | ||
|
||
WarpStatus | ||
StateBME680() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
void initBNO055(const uint8_t i2cAddress, uint16_t operatingVoltageMillivolts); | ||
WarpStatus readSensorRegisterBNO055(uint8_t deviceRegister, int numberOfBytes); | ||
WarpStatus writeSensorRegisterBNO055(uint8_t deviceRegister, uint8_t payload); | ||
WarpStatus configureSensorRegisterBNO055(uint8_t payloadOP_Mode, uint8_t payloadPWR_Mode); | ||
WarpStatus configureSensorRegisterBNO055(uint8_t payloadOP_Mode, uint8_t payloadPWR_Mode); | ||
void printSensorDataBNO055(bool hexModeFlag); | ||
WarpStatus StateBNO055(); | ||
WarpStatus StateBNO055(); | ||
uint8_t appendSensorDataBNO055(uint8_t* buf); | ||
|
||
|