Added firmware manager skeleton

This commit is contained in:
2026-04-23 21:08:56 -07:00
parent 37fef28911
commit ae53d7f7f3
4 changed files with 37 additions and 5 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef FIRMWARE_MANAGER_HPP
#define FIRMWARE_MANAGER_HPP
namespace app {
class FirmwareManager {
public:
FirmwareManager() = default;
~FirmwareManager() = default;
static void entryPoint(void *, void *, void *);
private:
};
} // namespace app
#endif