Contiki 2.5
tr1001.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006, 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  * $Id: tr1001.c,v 1.2 2006/10/10 15:58:31 adamdunkels Exp $
32  */
33 
34 /**
35  * \file
36  * A brief description of what this file is.
37  * \author
38  * Adam Dunkels <adam@sics.se>
39  */
40 
41 #include <stdio.h>
42 #include "tr1001.h"
43 /*---------------------------------------------------------------------------*/
44 void
46 {
47  printf("tr1001_init()\n");
48 }
49 /*---------------------------------------------------------------------------*/
50 unsigned short
51 tr1001_poll(void)
52 {
53  printf("tr1001_poll()\n");
54  return 0;
55 }
56 /*---------------------------------------------------------------------------*/
57 u8_t
58 tr1001_send(u8_t *packet, u16_t len)
59 {
60  printf("tr1001_send(%p, %d)\n", packet, len);
61  return 0;
62 }
63 /*---------------------------------------------------------------------------*/
64 void
65 tr1001_set_txpower(unsigned char p)
66 {
67  printf("tr1001_set_txpower(%d)\n", p);
68 }
69 /*---------------------------------------------------------------------------*/
70 unsigned short
72 {
73  return 0;
74 }
75 /*---------------------------------------------------------------------------*/
76 static unsigned short packets_ok, packets_err;
77 unsigned short
78 tr1001_packets_ok(void)
79 {
80  return packets_ok;
81 }
82 /*---------------------------------------------------------------------------*/
83 unsigned short
84 tr1001_packets_dropped(void)
85 {
86  return packets_err;
87 }
88 /*---------------------------------------------------------------------------*/
89 void
90 tr1001_clear_packets(void)
91 {
92  packets_ok = packets_err = 0;
93 }
94 /*---------------------------------------------------------------------------*/
95 void
96 tr1001_clear_active(void)
97 {
98 }
99 /*---------------------------------------------------------------------------*/
100 int
101 tr1001_active(void)
102 {
103  return 0;
104 }
105 /*---------------------------------------------------------------------------*/
106 unsigned short
107 tr1001_sstrength_value(unsigned int type)
108 {
109  printf("tr1001_sstrength_value(%d)\n", type);
110  return 0;
111 }
112 /*---------------------------------------------------------------------------*/