-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#211 Fixed vl53 deck driver hijacking i2c buss.
The vl53 deck driver used interrupt polling and a periodic timer to read out sensor data. The periodic timer was running faster then the vl53 sensor could provide values leaving the driver in a constant polling state. This had the consequence that the mem subsystem, having a lower priority, never got to read the eeprom on the same i2c buss. A relaxation delay was added to fix this. Also the sensor reading was changed from every 100ms to as fast as possible.
- Loading branch information
1 parent
7f03c13
commit b55d0ec
Showing
3 changed files
with
11 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
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