We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I read my SPI memory with
The flash.py program reads only two bytes, why? In the code, I don't get why you replace size variable at line https://github.com/jamesbowman/spidriver/blob/master/python/samples/flash.py#L97
if '-r' in optdict: read(0) chunk = 8 * 1024 size,chunk = 128,128 with open(optdict['-r'], "wb") as f:
By commenting the line size,chunk = 128,128, it works
size,chunk = 128,128
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I read my SPI memory with
The flash.py program reads only two bytes, why?
In the code, I don't get why you replace size variable at line https://github.com/jamesbowman/spidriver/blob/master/python/samples/flash.py#L97
By commenting the line
size,chunk = 128,128
, it worksThe text was updated successfully, but these errors were encountered: