Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
xeonqq committed Nov 8, 2023
1 parent 4aac518 commit 850afe0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sming/Libraries/MPU6050/MPU6050.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Changelog:
// ... - ongoing debug release

// NOTE: THIS IS ONLY A PARIAL RELEASE. THIS DEVICE CLASS IS CURRENTLY
// NOTE: THIS IS ONLY A PARTIAL RELEASE. THIS DEVICE CLASS IS CURRENTLY
// UNDERGOING ACTIVE DEVELOPMENT AND IS STILL MISSING SOME IMPORTANT FEATURES.
// PLEASE KEEP THIS IN MIND IF YOU DECIDE TO USE THIS PARTICULAR CODE FOR
// ANYTHING.
Expand Down
4 changes: 2 additions & 2 deletions Sming/Libraries/MPU6050/MPU6050.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// (RM-MPU-6000A-00)
// Based On https://github.com/jrowberg/i2cdevlib

// NOTE: THIS IS ONLY A PARIAL RELEASE. THIS DEVICE CLASS IS CURRENTLY
// NOTE: THIS IS ONLY A PARTIAL RELEASE. THIS DEVICE CLASS IS CURRENTLY
// UNDERGOING ACTIVE DEVELOPMENT AND IS STILL MISSING SOME IMPORTANT FEATURES.
// PLEASE KEEP THIS IN MIND IF YOU DECIDE TO USE THIS PARTICULAR CODE FOR
// ANYTHING.
Expand Down Expand Up @@ -3427,7 +3427,7 @@ template <typename T> T MPU6050::readReg(uint8_t regAddr)

const auto sz = sizeof(T);
uint8_t buffer[sz] = {0};
//data follow big endien convention
//data follow big endian convention
I2Cdev::readBytes(devAddr, regAddr, sz, buffer);

T result{};
Expand Down

0 comments on commit 850afe0

Please sign in to comment.