We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Flipping the first bit of IMAGE_MODE register it can give you the image in the right channel position.
{ IMAGE_MODE, IMAGE_MODE_RGB565 | 0b00000001 }, // or changing the IMAGE_MODE_RGB565 register itself
so the image doesn't need reverse_u32pixel. in fact it still needs a simplified version just to invert the odd and even column pixels, like
*(addr) = ((data & 0x0000FFFF) << 16) | ((data & 0xFFFF0000) >> 16);
of even removing reverse_u32pixel if there are other configurations of image format in DVP
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Flipping the first bit of IMAGE_MODE register it can give you the image in the right channel position.
so the image doesn't need reverse_u32pixel. in fact it still needs a simplified version just to invert the odd and even column pixels, like
of even removing reverse_u32pixel if there are other configurations of image format in DVP
The text was updated successfully, but these errors were encountered: