17 lines
211 B
C
17 lines
211 B
C
|
/*
|
||
|
* inverter.h
|
||
|
*
|
||
|
* Created on: 25.10.2016
|
||
|
* Author: dehottgw
|
||
|
*/
|
||
|
|
||
|
#ifndef INVERTER_H_
|
||
|
#define INVERTER_H_
|
||
|
|
||
|
|
||
|
void inverterInit();
|
||
|
void inverterSetFrequency(uint8_t freqOut);
|
||
|
|
||
|
|
||
|
#endif /* INVERTER_H_ */
|