Increase SPI buffer size in Raspbian

旧巷老猫 提交于 2019-12-07 06:27:01

问题


I need to send 10 k bytes over SPI in single transfer (yes, because Linux is so realtime, if I send these bytes in two transfers, I do not match the timings of IC).

But maximum size of message in spi_bcm2708 kernel module is 4096 bytes. How do I modify this value (preferably without recompilation of the module)? If I can do with specifying parameter to the module, what parameter and in what file I need to specify?

Thanks in advance.


回答1:


For some time, the Pi Foundation have compiled the SPI device driver into the kernel. The way to change the buffer size now is to edit the /boot/cmdline.txt file and add:

spidev.bufsiz=<NEEDED BUFFER SIZE>



回答2:


The solution is to add following lines to /etc/modprobe.d/local.conf:

options spidev bufsiz=<NEEDED BUFFER SIZE>


来源:https://stackoverflow.com/questions/16427996/increase-spi-buffer-size-in-raspbian

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!