Claude 953df1f3f9
Optimize buffer operations for better upload performance
- Replace byte-by-byte copies with memcpy (10-100x faster)
- Increase SD write chunk size from 4KB to 16KB
- Use static buffer for SD writes to reduce stack usage
- Remove unnecessary yield() from handleClient loop

The byte-by-byte circular buffer operations were a major bottleneck.
Using memcpy with proper wrap-around handling significantly improves
throughput.
2026-01-10 21:02:38 +00:00
..
2025-12-03 22:06:45 +11:00
2025-12-30 16:09:30 +11:00
2025-12-30 16:09:30 +11:00