29 lines
577 B
C++
29 lines
577 B
C++
/*!\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_ */
|