Files
openpilot/rednose/helpers/ekf_load.h
Comma Device 3721ecbf8a Release 260111
2026-01-11 18:23:29 +08:00

10 lines
273 B
C++

#include <vector>
#include <string>
#include "ekf.h"
std::vector<const EKF*>& ekf_get_all();
const EKF* ekf_lookup(const std::string& ekf_name);
void ekf_register(const EKF* ekf);
void ekf_load_and_register(const std::string& ekf_directory, const std::string& ekf_name);