← index #2692Issue #15571
Related · high · value 0.193
QUERY · ISSUE

RFC modframebuf.c scrolling behaviour

openby peterhinchopened 2016-12-17updated 2024-09-29
enhancement

Currently framebuf_scroll does not clear the region of the display which is exposed by scrolling. While I appreciate that this behaviour is by design, I'd submit that it's seldom what is actually required.

An option would be good, perhaps via a colour arg:

  1. Behave as at present leaving exposed region unchanged.
  2. Fill with a colour.

Any thoughts, or reasons why the current behaviour has been chosen?

CANDIDATE · ISSUE

frambuf initalizes with ValueError

openby hoihuopened 2024-07-30updated 2026-03-24
bugextmod

Port, board and/or hardware

all variants that use the framebuf module

MicroPython version

MicroPython v1.24.0-preview.149.g6007f3e20 on 2024-07-26; Raspberry Pi Pico W with RP2040

Reproduction

I'm using a simple frambuffer with one bit per pixel. This code segment used to work on earlier micropython versions but fails now:

import framebuf
w=21; h=8
data = bytearray(w*h // 8)
fb = framebuf.FrameBuffer(data, w, h, framebuf.MONO_HMSB)

Expected behaviour

Expected to accept the input buffer without a ValueError

Observed behaviour

this causes a

 File "<stdin>", line 1, in <module>
ValueError: 

ValueError is raised with no further details

Additional Information

I tracked this due to this input validation here:

https://github.com/micropython/micropython/blob/master/extmod/modframebuf.c#L318

and I think that's due to
https://github.com/micropython/micropython/blob/master/extmod/modframebuf.c#L294

which modifies the stride value to be 24 ((21 + 7) & ~7 == 24) and therefore the provided input buffer is too small. Modifying the example above with a input buffer of 24 then works as expected.

I'm not sure why this check was introduced. Maybe due to other functionalities in the framebuffer. But in any case it's now difficult to provide a matching input buffer size without the knowledge of what is checked inside the module.

This could be addressed via a doc update. Or raise a ValueError that indicates what went wrong (e.g. "expected buffer length of xxx, got yyy")

Code of Conduct

Yes, I agree

Keyboard

j / / n
next pair
k / / p
previous pair
1 / / h
show query pane
2 / / l
show candidate pane
c
copy suggested comment
r
toggle reasoning
g i
go to index
?
show this help
esc
close overlays

press ? or esc to close

copied