-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ODROID I2C IOError #9
Comments
dmesg: |
I found this issue: |
It was solved by kernel syslog after patch: |
After a while I2C input and output operations with this code
8d32f31
an error ocured:
(most recent call last):
File "./ble.py", line 92, in
spi.SPI_write_byte(spi.I2CSPI_SS0, 0x39)
File "/home/odroid/git/pymlab/src/pymlab/sensors/bus_translators.py", line 53, in SPI_write_byte
self.bus.write_byte_data(self.address, chip_select, data)
File "/home/odroid/git/pymlab/src/pymlab/sensors/init.py", line 220, in write_byte_data
return self.driver.write_byte_data(address, register, value)
File "/home/odroid/git/pymlab/src/pymlab/sensors/iic.py", line 106, in write_byte_data
return self.smbus.write_byte_data(address, register, value)
IOError: [Errno 11] Resource temporarily unavailable
After that the I2C is permanently unavailable.
The text was updated successfully, but these errors were encountered: