aboutsummaryrefslogtreecommitdiffstats
path: root/Lab4.X/lab4_button.h
blob: 100195428265157679eb8eaee06e2735173f2672 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef LAB4_BUTTON_H
#define	LAB4_BUTTON_H

#include <xc.h> // include processor files - each processor file is guarded.  


#ifdef	__cplusplus
extern "C" {
#endif /* __cplusplus */
    void initPushButton(void);
    void addBuffer(unsigned long x);
    unsigned long getBuffer();
#ifdef	__cplusplus
}
#endif /* __cplusplus */

#endif	/* LAB4_BUTTON_H */