Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
map.hpp File Reference
#include <map>
#include <memory>
#include <string>
#include "motion_lib/steering_motor_model/pid_steering_motor.hpp"
Include dependency graph for map.hpp:

Go to the source code of this file.

Variables

const std::map< std::string, std::function< std::shared_ptr< SteeringMotorModel >(const common_lib::car_parameters::CarParameters &)>, std::less<> > steering_motor_models_map
 

Variable Documentation

◆ steering_motor_models_map

const std::map<std::string, std::function<std::shared_ptr<SteeringMotorModel>( const common_lib::car_parameters::CarParameters&)>, std::less<> > steering_motor_models_map
Initial value:
= {
{"pid",
-> std::shared_ptr<SteeringMotorModel> {
return std::make_shared<PIDSteeringMotor>(params);
}},
}

Definition at line 18 of file map.hpp.