| 1 | #include "sensor_pipeline.hpp" |
| 2 | |
| 3 | int main() { |
| 4 | SensorPipeline pipeline("IMU_Pipeline"); |
| 5 | pipeline.start(); |
| 6 | |
| 7 | std::cout << "[INFO] Pipeline running at " << config::IMU_HZ << " Hz\n"; |
| 8 | std::this_thread::sleep_for(std::chrono::seconds(3)); |
| 9 | |
| 10 | pipeline.stop(); |
| 11 | std::cout << "[INFO] Processed " << pipeline.processedCount() << " readings\n"; |
| 12 | return 0; |
| 13 | } |
nothing calls this directly
no test coverage detected