• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

dangernoodle-io / TaipanMiner / 25282658918
90%

Build:
DEFAULT BRANCH: main
Ran 03 May 2026 03:07PM UTC
Jobs 1
Files 28
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

03 May 2026 03:06PM UTC coverage: 92.338%. Remained the same
25282658918

push

github

web-flow
fix(display): collapse function-static row buffers into one shared union (TA-302) (#312)

components/display/src/display.c had four function-static scratch arrays
on the ST7735 path that all lived in BSS for the life of the process:

  clear_st7735::s_line[LCD_WIDTH]              320 B
  draw_text_st7735::s_char_buf[2][FONT_W*FONT_H]  512 B
  draw_logo_st7735::s_logo_row[2][LOGO_W]      224 B
  render_frame::s_row_buf[2][LCD_WIDTH]        640 B
  ──────────────────────────────────────────  ──────
                                               1696 B

None of these execute concurrently — the display task is single-threaded
and each render function fully completes before the next runs. The next
esp_lcd_panel_draw_bitmap drains any in-flight DMA from the prior call
before reusing the buffer (already documented in the existing
double-buffer comment).

Replace all four with one shared union sized to the largest member
(render_frame's row pair, 640 B). Net BSS saving: ~1056 B on tdongle-s3
builds. Bitaxe builds (SSD1306, no ST7735 path) unaffected.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>

707 of 852 branches covered (82.98%)

Branch coverage included in aggregate %.

1607 of 1654 relevant lines covered (97.16%)

249583.16 hits per line

Jobs
ID Job ID Ran Files Coverage
1 25282658918.1 03 May 2026 03:07PM UTC 28
92.34
GitHub Action Run
Source Files on build 25282658918
  • Tree
  • List 28
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #25282658918
  • 5dd8acd5 on github
  • Prev Build on main (#25282460041)
  • Next Build on main (#25284466321)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc