Merge branch 'master' into add_embedded_graphics
commit
d65cf0c578
|
|
@ -100,8 +100,18 @@ where
|
||||||
{
|
{
|
||||||
// activate spi with cs low
|
// activate spi with cs low
|
||||||
self.cs.set_low();
|
self.cs.set_low();
|
||||||
|
|
||||||
// transfer spi data
|
// transfer spi data
|
||||||
|
// Be careful!! Linux has a default limit of 4096 bytes per spi transfer
|
||||||
|
// see https://raspberrypi.stackexchange.com/questions/65595/spi-transfer-fails-with-buffer-size-greater-than-4096
|
||||||
|
if cfg!(target_os = "linux") {
|
||||||
|
for data_chunk in data.chunks(4096) {
|
||||||
|
spi.write(data_chunk)?;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
spi.write(data)?;
|
spi.write(data)?;
|
||||||
|
}
|
||||||
|
|
||||||
// deativate spi with cs high
|
// deativate spi with cs high
|
||||||
self.cs.set_high();
|
self.cs.set_high();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue