This repository has been archived by the owner on Jun 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
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
1 parent
6673a46
commit cb00d11
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,8 @@ | |
** ** | ||
** Vers. Date Developer Comments ** | ||
** ====== ========== =================== ======================================================================== ** | ||
** 1.0.3 2017-08-09 [email protected] Work on GitHub Bug #4 with overflow values where not expected ** | ||
** 1.0.3 2017-08-09 [email protected] Fix https://github.com/SV-Zanshin/INA226/issues/4. Overflows in compu- ** | ||
** tations of begin() and getShuntMicroVolts() functions. ** | ||
** 1.0.2 2017-07-30 [email protected] Optional parameter default values only in function prototypes ** | ||
** 1.0.1 2017-05-26 [email protected] Changed _CurrentLSB from uint16_t to uint32_t due to overflow bug ** | ||
** 1.0.0 2017-01-10 [email protected] Fixed library file name, added constants for setMode() call ** | ||
|
@@ -72,7 +73,6 @@ | |
const uint8_t INA_MODE_CONTINUOUS_SHUNT = B101; // Continuous shunt, no bus // | ||
const uint8_t INA_MODE_CONTINUOUS_BUS = B110; // Continuous bus, no shunt // | ||
const uint8_t INA_MODE_CONTINUOUS_BOTH = B111; // Both continuous, default value // | ||
|
||
/***************************************************************************************************************** | ||
** Declare class header ** | ||
*****************************************************************************************************************/ | ||
|