-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix NANO RP2040 (mbed) support (#54)
- fix NANO RP2040 - update and add examples - minor edits
- Loading branch information
1 parent
1d53197
commit 75fe0f1
Showing
9 changed files
with
122 additions
and
38 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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
Based upon output of **ADS_performance.ino** | ||
UNO 16 MHz. | ||
IDE 1.8.19 | ||
|
||
|
||
Synchronous calls I2C **100 KHz** | ||
|
||
| DataRate | Time 100 calls | SPS | | ||
|:----------:|:----------------:|:------:| | ||
| 0 | 12861340 | 7.78 | | ||
| 1 | 6481396 | 15.4 | | ||
| 2 | 3347512 | 29.9 | | ||
| 3 | 1724380 | 58.0 | | ||
| 4 | 941032 | 106 | | ||
| 5 | 549204 | 182 | | ||
| 6 | 381340 | 262 | | ||
| 7 | 269448 | 371 | | ||
|
||
|
||
Synchronous calls I2C **400 KHz** | ||
|
||
| DataRate | Time 100 calls | SPS | | ||
|:----------:|:----------------:|:------:| | ||
| 0 | 12872804 | 7.77 | | ||
| 1 | 6402848 | 15.6 | | ||
| 2 | 3234156 | 30.9 | | ||
| 3 | 1649272 | 60.6 | | ||
| 4 | 862188 | 116 | | ||
| 5 | 468652 | 213 | | ||
| 6 | 271552 | 368 | | ||
| 7 | 173412 | 577 | | ||
|
||
|
||
Synchronous calls I2C **600 KHz** | ||
|
||
| DataRate | Time 100 calls | SPS | | ||
|:----------:|:----------------:|:------:| | ||
| 0 | 12736788 | 7.85 | | ||
| 1 | 6390104 | 15.7 | | ||
| 2 | 3223568 | 31.0 | | ||
| 3 | 1645768 | 60.8 | | ||
| 4 | 852300 | 117 | | ||
| 5 | 448520 | 223 | | ||
| 6 | 261216 | 383 | | ||
| 7 | 167660 | 596 | | ||
|
||
These are maxima of the SPS feasible, they do not include further processing. | ||
At least this test shows the effect of the I2C bus speed. | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=ADS1X15 | ||
version=0.3.9 | ||
version=0.3.10 | ||
author=Rob Tillaart <[email protected]> | ||
maintainer=Rob Tillaart <[email protected]> | ||
sentence=Arduino library for ADS1015 - I2C 12 bit ADC and ADS1115 I2C 16 bit ADC | ||
|