aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/bus.py
Commit message (Collapse)AuthorAgeFilesLines
* i2ccmds: Pass the i2c address as a 7-bit number (0-127)Kevin O'Connor2019-01-071-4/+8
| | | | | | | | | | | | | | | | The sam3 i2c code and the linux code use a 7-bit i2c address, while the avr, lpc176x, and samd21 i2c code uses an 8-bit address with the least significant bit always zero. A similar issue occurred in the host code (sx1509.py and replicape.py use 7-bit addresses while uc1701.py and mcp4451.py use 8-bit addresses). Consistently use 7-bit addresses in all the code. This breaks compatibility between host and mcu software, so make a change to the config_i2c command to force users to synchronize software updates. This also breaks common Smoothieboard configs, so update the mcp4451 code to validate the i2c_address. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* bus: Set all SPI CS pins high before first config_spi messageKevin O'Connor2019-01-041-2/+5
| | | | | | | | | If an SPI device is shared among many devices, then all the device's CS pins should be set high prior to setting up the clk pin. (Otherwise, there's a chance a device could interpret the clk pin setup as part of a transmission.) Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* bus: Don't raise a "duplicate pin" warning on None pinsKevin O'Connor2019-01-021-0/+1
| | | | | | | If "None" is used for an spi cs pin, then it should not reserve "None" for other uses. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* uc1701: Add support for SSD1306 in i2c modeKevin O'Connor2018-11-231-2/+76
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* bus: Add klippy/extras/bus.py module with SPI bus helper codeKevin O'Connor2018-11-211-0/+65
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>