You've already forked Frequency_Inverter
mirror of
https://github.com/Indemsys/Frequency_Inverter.git
synced 2026-04-26 10:55:34 +00:00
10 lines
173 B
C
10 lines
173 B
C
#ifndef PIT_H_
|
|
#define PIT_H_
|
|
|
|
void PIT0_init(unsigned int period);
|
|
void PIT0_int_enable(void);
|
|
void PIT0_int_disable(void);
|
|
void PIT1_init(unsigned int period );
|
|
|
|
#endif
|