mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-08-18 18:20:15 +08:00
11 lines
240 B
C++
11 lines
240 B
C++
#ifndef __CURRENT_LIMITER_HPP
|
|
#define __CURRENT_LIMITER_HPP
|
|
|
|
class CurrentLimiter {
|
|
public:
|
|
virtual ~CurrentLimiter() = default;
|
|
virtual float get_current_limit(float base_current_lim) const = 0;
|
|
};
|
|
|
|
#endif // __CURRENT_LIMITER_HPP
|