-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterrup.h
25 lines (18 loc) · 850 Bytes
/
interrup.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
* File: interrup.h
* Author: Valery Ramirez
* Comments: Archivo de cabecera para configurar las fuentes de
* interrupción.
* Revision history: N/A
*/
#ifndef INTERRUP_H
#define INTERRUP_H
#include <xc.h>
void Inicia_Interr(void); /* Prototipo de función para
* configurar e iniciar las fuentes
* de interrupción. */
/* Prototipos de función para manejar las fuentes de interrupción */
void __attribute__((interrupt(auto_psv))) _T2Interrupt(void);/* Prototipo de
* función para manejar la
* interrupción del timer 2. */
#endif /* INTERRUP_H */