Subversion Repositories Code-Repo

Rev

Rev 107 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 Kevin 1
#ifndef __pwm_h
2
#define __pwm_h
3
 
4
void pwm_init(void);
5
void pwm_start(void);
6
void pwm_stop(void);
7
 
111 Kevin 8
static char pwm_on = 0;
9
 
107 Kevin 10
#endif