Skip to content

Commit 800db05

Browse files
committed
fix uint definition
1 parent 6446b06 commit 800db05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/led-matrix-painter/python/app_frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def to_c_string(self) -> str:
146146
Returns:
147147
str: C source fragment containing a const array initializer.
148148
"""
149-
c_type = "uint8_t"
149+
c_type = "uint32_t"
150150
scaled_arr = self.rescale_quantized_frame(scale_max=255)
151151

152152
parts = [f"const {c_type} {self.name}[] = {{"]

0 commit comments

Comments
 (0)