lthiery / SPI-Py

Hardware SPI as a C Extension for Python
286 stars 150 forks source link

Fixed bug that prevented SPI transmissions larger than 255 bytes. #7

Closed blark closed 10 years ago

blark commented 10 years ago

Fixed a bug that prevented SPI transmissions larger than 255 bytes. The i variable was uint8_t, changing it to a uint16_t solves the issue.