Closed offirs1 closed 5 years ago
on this line: while ((timeout--) && (!(status() & BQ27441_FLAG_CFGUPMODE)))
status() should be replaced with flags()
correct line: while ((timeout--) && (!(flags() & BQ27441_FLAG_CFGUPMODE)))
please fix, thanks.
Find same issues! Please fix it.
Fixed and pushed changes, thanks!
on this line: while ((timeout--) && (!(status() & BQ27441_FLAG_CFGUPMODE)))
status() should be replaced with flags()
correct line: while ((timeout--) && (!(flags() & BQ27441_FLAG_CFGUPMODE)))
please fix, thanks.