00001 /* 00002 * Copyright (c) 2005, Swedish Institute of Computer Science 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions 00007 * are met: 00008 * 1. Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * 2. Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * 3. Neither the name of the Institute nor the names of its contributors 00014 * may be used to endorse or promote products derived from this software 00015 * without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 00018 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 00021 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00022 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00023 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00024 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00025 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00026 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00027 * SUCH DAMAGE. 00028 * 00029 * This file is part of the Contiki operating system. 00030 * 00031 * @(#)$Id: tr1001.h,v 1.7 2005/07/04 09:52:48 adam Exp $ 00032 */ 00033 #ifndef __TR1001_H__ 00034 #define __TR1001_H__ 00035 00036 #include "uip.h" 00037 #include "clock.h" 00038 00039 void tr1001_init(void); 00040 00041 void tr1001_set_speed(unsigned char s); 00042 #define TR1001_19200 1 00043 #define TR1001_38400 2 00044 #define TR1001_57600 3 00045 #define TR1001_115200 4 00046 00047 void tr1001_set_txpower(unsigned char p); 00048 #define TR1001_TXPOWER_HIGHEST 100 00049 #define TR1001_TXPOWER_LOWEST 1 00050 00051 void tr1001_set_sendtype(unsigned char t); 00052 #define TR1001_SENDTYPE_NORMAL 0 00053 #define TR1001_SENDTYPE_ACKED 1 00054 00055 void tr1001_set_numrexmit(unsigned char acks); 00056 #define TR1001_NUMREXMIT_DEFAULT 2 00057 00058 u8_t tr1001_send(u8_t *packet, u16_t len); 00059 00060 unsigned short tr1001_poll(void); 00061 00062 int tr1001_send_synch(void); 00063 int tr1001_synched(void); 00064 00065 int tr1001_send_test(int numsynchbytes, unsigned char *data); 00066 00067 /*void tr1001_set_test_packet_receiver(process_id_t id);*/ 00068 00069 extern process_event_t tr1001_event_test_packet_received; 00070 00071 void tr1001_set_rxhandler(void (* handler)(void)); 00072 00073 extern unsigned char tr1001_rxbuf[]; 00074 00075 00076 extern volatile unsigned char tr1001_rxstate; 00077 00078 extern clock_time_t tr1001_start_time; 00079 00080 void tr1001_on(void); 00081 void tr1001_off(void); 00082 00083 unsigned short tr1001_sstrength(void); 00084 00085 #endif /* __TR1001_H__ */
1.3.6