Closed twa127 closed 3 years ago
Hi,
In chip.py the python operator 'in' is used for chip detection, but this can cause problems for similar strings e.g.
if self.detector.check_dt_compatible_value("sun50i-h6"): and if self.detector.check_dt_compatible_value("sun50i-h616"): will both be true.
Good point. h616 should be checked before h6
yeah that will do it, shall I commit an update?
Please and thank you.
okay done :-)
Thank you!
Hi,
In chip.py the python operator 'in' is used for chip detection, but this can cause problems for similar strings e.g.
if self.detector.check_dt_compatible_value("sun50i-h6"): and if self.detector.check_dt_compatible_value("sun50i-h616"): will both be true.