Add initial sensor sampler and processing components
Build / Build app and tests (ubuntu-24.04) (push) Failing after 2m38s
Documentation / Build (1.14.0) (push) Failing after 26s
Documentation / Build (1.9.6) (push) Successful in 11s
Documentation / Deploy (push) Has been skipped

This commit is contained in:
2026-04-22 22:47:12 -07:00
parent cefb043b7f
commit 37fef28911
6 changed files with 82 additions and 4 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef SENSOR_SAMPLER_HPP
#define SENSOR_SAMPLER_HPP
namespace app {
class SensorSampler {
public:
SensorSampler() = default;
~SensorSampler() = default;
// Thread entry
static void entryPoint(void *, void *, void *);
private:
};
} // namespace app
#endif