Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase SPI buffer size in Raspbian

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.

like image 489
Maxim Avatar asked May 07 '13 20:05

Maxim


2 Answers

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>
like image 165
kiplantt Avatar answered Nov 02 '22 22:11

kiplantt


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

options spidev bufsiz=<NEEDED BUFFER SIZE>
like image 39
Maxim Avatar answered Nov 03 '22 00:11

Maxim