spiInterface: increase spi_put len param

This commit is contained in:
Gwenhael Goavec-Merou
2020-08-23 17:16:21 +02:00
parent 4bfb764e75
commit b3ef97f95e
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ class Xilinx: public Device, SPIInterface {
/* spi interface */
int spi_put(uint8_t cmd, uint8_t *tx, uint8_t *rx,
uint16_t len) override;
int spi_put(uint8_t *tx, uint8_t *rx, uint16_t len) override;
uint32_t len) override;
int spi_put(uint8_t *tx, uint8_t *rx, uint32_t len) override;
int spi_wait(uint8_t cmd, uint8_t mask, uint8_t cond,
uint32_t timeout, bool verbose = false) override;
};