Skip to content
New issue

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

Update chunk #65

Merged
merged 2 commits into from
Sep 27, 2021
Merged

Update chunk #65

merged 2 commits into from
Sep 27, 2021

Conversation

caternuson
Copy link
Contributor

  • Removes chunkification from write and reverts back to original non-chunk code.
  • Updates chunkification in read to work directly on buffer passed in

Tested with AMG8833 pixel_test example on an UNO and Feather ESP32 for chunk cases and Qt Py M0 for non-chunk case.

UNO

Screenshot from 2021-09-27 11-25-58

Can see the chunks on the read (gap in SCL):
image

Feather ESP32

Screenshot from 2021-09-27 11-23-21

Can see the chunks on the read (gap in SCL):
image

Qt Py M0

Screenshot from 2021-09-27 11-34-00

No chunks needed here:
image

@caternuson
Copy link
Contributor Author

Actually, ESP32 is still broken with 2.0.0 release version of BSP. I had some of the proposed updates in place for the above testing. With 2.0.0 release (this is just #64 again):

Screenshot from 2021-09-27 11-52-17

@caternuson caternuson requested a review from ladyada September 27, 2021 18:55
return true;
size_t pos = 0;
while (pos < len) {
size_t read_len = len - pos > maxBufferSize() ? maxBufferSize() : len - pos;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i really dislike trinary here, plz add parens at least

@caternuson caternuson merged commit cb21cf5 into adafruit:master Sep 27, 2021
@ladyada
Copy link
Member

ladyada commented Sep 27, 2021

thank uuuuu

@caternuson
Copy link
Contributor Author

np. this is how it should have been to begin with :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants