Contiki 3.x
energest.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007, Swedish Institute of Computer Science.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the Institute nor the names of its contributors
14  * may be used to endorse or promote products derived from this software
15  * without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * This file is part of the Contiki operating system.
30  *
31  */
32 
33 /**
34  * \file
35  * Header file for the energy estimation mechanism
36  * \author
37  * Adam Dunkels <adam@sics.se>
38  */
39 
40 #ifndef ENERGEST_H_
41 #define ENERGEST_H_
42 
43 #include "sys/rtimer.h"
44 
45 typedef struct {
46  /* unsigned long cumulative[2];*/
47  unsigned long current;
48 } energest_t;
49 
50 enum energest_type {
51  ENERGEST_TYPE_CPU,
52  ENERGEST_TYPE_LPM,
53  ENERGEST_TYPE_IRQ,
54  ENERGEST_TYPE_LED_GREEN,
55  ENERGEST_TYPE_LED_YELLOW,
56  ENERGEST_TYPE_LED_RED,
57  ENERGEST_TYPE_TRANSMIT,
58  ENERGEST_TYPE_LISTEN,
59 
60  ENERGEST_TYPE_FLASH_READ,
61  ENERGEST_TYPE_FLASH_WRITE,
62 
63  ENERGEST_TYPE_SENSORS,
64 
65  ENERGEST_TYPE_SERIAL,
66 
67  ENERGEST_TYPE_MAX
68 };
69 
70 void energest_init(void);
71 unsigned long energest_type_time(int type);
72 #ifdef ENERGEST_CONF_LEVELDEVICE_LEVELS
73 unsigned long energest_leveldevice_leveltime(int powerlevel);
74 #endif
75 void energest_type_set(int type, unsigned long value);
76 void energest_flush(void);
77 
78 #if ENERGEST_CONF_ON
79 /*extern int energest_total_count;*/
80 extern energest_t energest_total_time[ENERGEST_TYPE_MAX];
81 extern rtimer_clock_t energest_current_time[ENERGEST_TYPE_MAX];
82 extern unsigned char energest_current_mode[ENERGEST_TYPE_MAX];
83 
84 #ifdef ENERGEST_CONF_LEVELDEVICE_LEVELS
85 extern energest_t energest_leveldevice_current_leveltime[ENERGEST_CONF_LEVELDEVICE_LEVELS];
86 #endif
87 
88 #define ENERGEST_ON(type) do { \
89  /*++energest_total_count;*/ \
90  energest_current_time[type] = RTIMER_NOW(); \
91  energest_current_mode[type] = 1; \
92  } while(0)
93 #ifdef __AVR__
94 /* Handle 16 bit rtimer wraparound */
95 #define ENERGEST_OFF(type) if(energest_current_mode[type] != 0) do { \
96  if (RTIMER_NOW() < energest_current_time[type]) energest_total_time[type].current += RTIMER_ARCH_SECOND; \
97  energest_total_time[type].current += (rtimer_clock_t)(RTIMER_NOW() - \
98  energest_current_time[type]); \
99  energest_current_mode[type] = 0; \
100  } while(0)
101 
102 #define ENERGEST_OFF_LEVEL(type,level) do { \
103  if (RTIMER_NOW() < energest_current_time[type]) energest_total_time[type].current += RTIMER_ARCH_SECOND; \
104  energest_leveldevice_current_leveltime[level].current += (rtimer_clock_t)(RTIMER_NOW() - \
105  energest_current_time[type]); \
106  energest_current_mode[type] = 0; \
107  } while(0)
108 #else
109 #define ENERGEST_OFF(type) if(energest_current_mode[type] != 0) do { \
110  energest_total_time[type].current += (rtimer_clock_t)(RTIMER_NOW() - \
111  energest_current_time[type]); \
112  energest_current_mode[type] = 0; \
113  } while(0)
114 
115 #define ENERGEST_OFF_LEVEL(type,level) do { \
116  energest_leveldevice_current_leveltime[level].current += (rtimer_clock_t)(RTIMER_NOW() - \
117  energest_current_time[type]); \
118  energest_current_mode[type] = 0; \
119  } while(0)
120 #endif
121 
122 
123 #else /* ENERGEST_CONF_ON */
124 #define ENERGEST_ON(type) do { } while(0)
125 #define ENERGEST_OFF(type) do { } while(0)
126 #define ENERGEST_OFF_LEVEL(type,level) do { } while(0)
127 #endif /* ENERGEST_CONF_ON */
128 
129 #endif /* ENERGEST_H_ */
Header file for the real-time timer module.