File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
ext_mod/lcd_bus/esp32_include Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ def generate_manifest(
409
409
entry = f"freeze('{ file_path } ', '{ file_name } ')"
410
410
if entry not in manifest_files :
411
411
manifest_files .append (entry )
412
-
412
+
413
413
manifest_files = '\n ' .join (manifest_files )
414
414
415
415
with open ('build/manifest.py' , 'w' ) as f :
Original file line number Diff line number Diff line change 9
9
10
10
bool rgb565_dither_init (void );
11
11
12
- static inline rgb565_dither_pixel (uint8_t treshold_id , uint16_t * pixel )
12
+ static inline void rgb565_dither_pixel (uint8_t treshold_id , uint16_t * pixel )
13
13
{
14
14
* pixel = (((((* pixel >> 8 ) & 0xF8 ) + red_thresh [treshold_id ]) << 8 ) |
15
15
((((* pixel >> 3 ) & 0xFC ) + green_thresh [treshold_id ]) << 3 ) |
You can’t perform that action at this time.
0 commit comments