MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/driver/InverterSync.hh
2024-06-07 11:12:56 +03:00

29 lines
577 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*!\file
* \brief \todo Описание файла.
*/
/*
* InverterSync.h
*
* Created on: 19 июн. 2019 г.
* Author: titov
*/
#ifndef SOURCE_DRIVER_INVERTERSYNC_H_
#define SOURCE_DRIVER_INVERTERSYNC_H_
#include "Inverter.hh"
namespace driver {
class InverterSync : public Inverter {
public:
InverterSync( peripheral::IPwm & u, peripheral::IPwm & v, peripheral::IPwm & w, driver::IDiscreteOutput & pulse );
void pwm(float Ta, float Tb, float Tc); //!< \copydoc IInverter::pwm(float, float, float)
};
}
#endif /* SOURCE_DRIVER_INVERTERSYNC_H_ */