Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR fixes blocking HTTP calls by implementing asynchronous telemetry sending on the RP2040 platform. The key changes focus on moving HTTP POST operations to a separate core to prevent blocking the main application loop.
- Introduces a lock-free SPSC queue for telemetry data on RP2040 with core-1 worker thread
- Refactors configuration from separate host/port to unified base URL
- Maintains synchronous behavior on ESP8266/ESP32 platforms for compatibility
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/OtelSender.cpp | Complete rewrite implementing async queue system and multi-core support for RP2040 |
| include/OtelSender.h | Adds queue management, worker thread controls, and async API definitions |
| platformio.ini | Updates configuration from separate host/port to unified base URL |
| library.json | Version bump and author name update |
| README.md | Documents new concurrency features and configuration options |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull Request Overview
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull Request Overview
Copilot reviewed 5 out of 5 changed files in this pull request and generated 5 comments.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
No description provided.