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(
409409 entry = f"freeze('{ file_path } ', '{ file_name } ')"
410410 if entry not in manifest_files :
411411 manifest_files .append (entry )
412-
412+
413413 manifest_files = '\n ' .join (manifest_files )
414414
415415 with open ('build/manifest.py' , 'w' ) as f :
Original file line number Diff line number Diff line change 99
1010 bool rgb565_dither_init (void );
1111
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 )
1313 {
1414 * pixel = (((((* pixel >> 8 ) & 0xF8 ) + red_thresh [treshold_id ]) << 8 ) |
1515 ((((* pixel >> 3 ) & 0xFC ) + green_thresh [treshold_id ]) << 3 ) |
You can’t perform that action at this time.
0 commit comments