File: Lpl.h

package info (click to toggle)
tinyos 2.1.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 47,476 kB
  • ctags: 36,607
  • sloc: ansic: 63,646; cpp: 14,974; java: 10,358; python: 5,215; makefile: 1,724; sh: 902; asm: 597; xml: 392; perl: 74; awk: 46
file content (23 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef LPL_H
#define LPL_H

/**
 * Amount of time, in milliseconds, to keep the radio on after
 * a successful receive addressed to this node
 */
#ifndef DELAY_AFTER_RECEIVE
#define DELAY_AFTER_RECEIVE 100
#endif

/**
 * The LPL defaults to stay-on.
 */
#ifndef LPL_DEF_LOCAL_WAKEUP
#define LPL_DEF_LOCAL_WAKEUP 0
#endif

#ifndef LPL_DEF_REMOTE_WAKEUP
#define LPL_DEF_REMOTE_WAKEUP 0
#endif

#endif