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

dangernoodle-io / breadboard / 25121582925
100%

Build:
DEFAULT BRANCH: main
Ran 29 Apr 2026 04:41PM UTC
Jobs 1
Files 9
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

29 Apr 2026 04:40PM UTC coverage: 100.0%. Remained the same
25121582925

push

github

web-flow
fix(bb_ota_push): use OTA_RECV_BUF_SIZE not sizeof(buf) after heap migration (#150)

PR #147 (B1-118) moved the OTA recv buffer from stack-allocated
`char buf[OTA_RECV_BUF_SIZE]` to heap-allocated `char *buf =
malloc(OTA_RECV_BUF_SIZE)` to free up httpd task stack. The recv
size argument still used `sizeof(buf)` which silently became
`sizeof(char *)` (4 or 8 bytes) instead of 1024.

Result: each httpd_req_recv() requested only 4 bytes per call.
Kernel TCP buffer filled, TCP window stalled, httpd's
recv_wait_timeout fired, OTA push aborted around 80s with
`exit code 56` on curl. Reproduced on bitaxe-403 and tdongle-s3.

Fix: replace `sizeof(buf)` with the `OTA_RECV_BUF_SIZE` define.
Validated end-to-end: bitaxe-403 OTA push 1.18 MB in 8.1s,
tdongle-s3 OTA push 1.17 MB in 17.9s — both back to expected
throughput.

330 of 330 branches covered (100.0%)

Branch coverage included in aggregate %.

521 of 521 relevant lines covered (100.0%)

482.79 hits per line

Jobs
ID Job ID Ran Files Coverage
1 25121582925.1 29 Apr 2026 04:41PM UTC 9
100.0
GitHub Action Run
Source Files on build 25121582925
  • Tree
  • List 9
  • 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 #25121582925
  • 91d95a75 on github
  • Prev Build on main (#25093345788)
  • Next Build on main (#25122912841)
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