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