-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtiempo.h
More file actions
32 lines (24 loc) · 714 Bytes
/
Copy pathtiempo.h
File metadata and controls
32 lines (24 loc) · 714 Bytes
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
26
27
28
29
30
31
32
/* ========================================
*
* Copyright YOUR COMPANY, THE YEAR
* All Rights Reserved
* UNPUBLISHED, LICENSED SOFTWARE.
*
* CONFIDENTIAL AND PROPRIETARY INFORMATION
* WHICH IS THE PROPERTY OF your company.
*
* ========================================
*/
#ifndef TIEMPO_H
#define TIEMPO_H
#include "project.h"
/*** MACROS ***/
#define limite_de_milisegundos milisegundos == 1000
#define reiniciar_milisegundos milisegundos = 0
/*** PROTOTIPO DE VARIABLES GLOBALES ***/
extern uint16 milisegundos;
/*** PROTOTIPO DE FUNCIONES ***/
/*** PROTOTIPO DE INTERRUPCIONES ***/
CY_ISR_PROTO(cronometro);
#endif
/* [] END OF FILE */