We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeafa0e commit 16a3b80Copy full SHA for 16a3b80
README.md
@@ -14,6 +14,16 @@ spi.open_path(spidev_devicefile_path)
14
to_send = [0x01, 0x02, 0x03]
15
spi.xfer(to_send)
16
```
17
+
18
+## Kernel
19
20
+The module uses the `SPI_IOC_RD_MODE32` and `SPI_IOC_WR_MODE32` ioctls that are
21
+available since Linux kernel version 3.15. Older kernels are not supported.
22
23
+Some features (e.g. `mosi_idle_low`) depend on the support being available in
24
+the Linux kernel. Make sure the module is built against the proper kernel
25
+header versions, otherwise the feature might be missing.
26
27
## Settings
28
29
```python
0 commit comments