module_base: remove CRTP template pattern to reduce flash bloat (#26476)

* module_base: claude rewrite to remove CRTP bloat

* module_base: apply to all drivers/modules

* format

* fix build errors

* fix missing syntax

* remove reference to module.h in files that need module_base.h

* remove old ModuleBase<T>

* add module_base.cpp to px4_protected_layers.cmake

* fix IridiumSBD can_stop()

* fix IridiumSBD.cpp

* clang-tidy: downcast static cast

* get_instance() template accessor, revert clang-tidy global

* rename module_base.h to module.h

* revert changes in zenoh/Kconfig.topics
This commit is contained in:
Jacob Dahl
2026-02-18 17:17:17 -09:00
committed by GitHub
parent 657854ae1b
commit ce3e62841f
227 changed files with 1741 additions and 1496 deletions
+6 -4
View File
@@ -49,6 +49,8 @@ using namespace time_literals;
namespace load_mon
{
ModuleBase::Descriptor LoadMon::desc{task_spawn, custom_command, print_usage};
LoadMon::LoadMon() :
ModuleParams(nullptr),
ScheduledWorkItem(MODULE_NAME, px4::wq_configurations::lp_default)
@@ -70,8 +72,8 @@ int LoadMon::task_spawn(int argc, char *argv[])
return -1;
}
_object.store(obj);
_task_id = task_id_is_work_queue;
desc.object.store(obj);
desc.task_id = task_id_is_work_queue;
/* Schedule a cycle to start things. */
obj->start();
@@ -114,7 +116,7 @@ void LoadMon::Run()
#if defined (__PX4_LINUX)
fclose(_proc_fd);
#endif
exit_and_cleanup();
exit_and_cleanup(desc);
}
perf_end(_cycle_perf);
@@ -327,7 +329,7 @@ which will also appear in the log file.
extern "C" __EXPORT int load_mon_main(int argc, char *argv[])
{
return LoadMon::main(argc, argv);
return ModuleBase::main(LoadMon::desc, argc, argv);
}
} // namespace load_mon