SZSPTP ez430-RF2480 1.0

ZigBee Sensor Network with synchronized time and time-stamped measurements.
led.h
Go to the documentation of this file.
1 /*
2  * led.h
3  *
4  * Date: 19/06/2014
5  * Author: Fernando Biazi Nascimento
6  * Copyright © 2014 Fernando Biazi Nascimento. All rights reserved.
7  *
8  * License of use and copy on file license.txt
9  *
10  */
11 
20 #ifndef LED_H_
21 #define LED_H_
22 
23 /*
24  * ======== Includes ========
25  */
26 
27 #include <xdc/std.h>
28 
29 /*
30  * ======== Doxygen ========
31  */
43 /*
44  * ======== Constants ========
45  */
46 
47 /*
48  * ======== Macros ========
49  */
50 
51 /*
52  * ======== Types ========
53  */
54 
55 /*
56  * ======== Global Variables ========
57  */
58 
59 /*
60  * ======== Global Functions ========
61  */
62 
63 void led_init();
64 
65 UInt16 led_proccess();
66 
67 void led_redConfigure(UInt8 n, UInt16 offDelay);
68 
69 void led_greenUp();
70 void led_greenDown();
71 
75 #endif /* LED_H_ */
UInt16 led_proccess()
This function processes the tasks of the LED, it controls the red LED.
Definition: led.c:158
void led_greenDown()
Green led down.
Definition: led.c:228
void led_redConfigure(UInt8 n, UInt16 offDelay)
Configures red led.
Definition: led.c:201
void led_init()
LED Initialization.
Definition: led.c:141
void led_greenUp()
Green led up.
Definition: led.c:212