Programa de recepción de Xbee en modo API
Fork of XBee802_Receive_Data by
config.h@10:92c101fbb485, 2016-05-25 (annotated)
- Committer:
- mrios
- Date:
- Wed May 25 23:07:19 2016 +0000
- Revision:
- 10:92c101fbb485
- Parent:
- 9:cb89b64eb98e
Agrego visualizacion de rssi en cada paquete recibido.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
spastor | 6:e6b1ff1944c7 | 1 | /** |
spastor | 6:e6b1ff1944c7 | 2 | * Copyright (c) 2015 Digi International Inc., |
spastor | 6:e6b1ff1944c7 | 3 | * All rights not expressly granted are reserved. |
spastor | 6:e6b1ff1944c7 | 4 | * |
spastor | 6:e6b1ff1944c7 | 5 | * This Source Code Form is subject to the terms of the Mozilla Public |
spastor | 6:e6b1ff1944c7 | 6 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
spastor | 6:e6b1ff1944c7 | 7 | * You can obtain one at http://mozilla.org/MPL/2.0/. |
spastor | 6:e6b1ff1944c7 | 8 | * |
spastor | 6:e6b1ff1944c7 | 9 | * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343 |
spastor | 6:e6b1ff1944c7 | 10 | * ======================================================================= |
spastor | 6:e6b1ff1944c7 | 11 | */ |
hbujanda | 5:b4cf3c26e2ec | 12 | |
spastor | 6:e6b1ff1944c7 | 13 | #ifndef __CONFIG_H_ |
hbujanda | 5:b4cf3c26e2ec | 14 | #define __CONFIG_H_ |
hbujanda | 5:b4cf3c26e2ec | 15 | |
hbujanda | 5:b4cf3c26e2ec | 16 | /** Library configuration options */ |
hbujanda | 5:b4cf3c26e2ec | 17 | #define ENABLE_LOGGING |
hbujanda | 5:b4cf3c26e2ec | 18 | #define ENABLE_ASSERTIONS |
hbujanda | 5:b4cf3c26e2ec | 19 | #define FRAME_BUFFER_SIZE 4 |
hbujanda | 5:b4cf3c26e2ec | 20 | #define MAX_FRAME_PAYLOAD_LEN 128 |
hbujanda | 5:b4cf3c26e2ec | 21 | |
hbujanda | 5:b4cf3c26e2ec | 22 | #define SYNC_OPS_TIMEOUT_MS 2000 |
hbujanda | 5:b4cf3c26e2ec | 23 | |
miketrent77 | 9:cb89b64eb98e | 24 | #define RADIO_TX PTE0 /* TODO: specify your setup's Serial TX pin connected to the XBee module DIN pin */ |
miketrent77 | 9:cb89b64eb98e | 25 | #define RADIO_RX PTE1 /* TODO: specify your setup's Serial RX pin connected to the XBee module DOUT pin */ |
hbujanda | 5:b4cf3c26e2ec | 26 | //#define RADIO_RTS NC /* TODO: specify your setup's Serial RTS# pin connected to the XBee module RTS# pin */ |
hbujanda | 5:b4cf3c26e2ec | 27 | //#define RADIO_CTS NC /* TODO: specify your setup's Serial CTS# pin connected to the XBee module CTS# pin */ |
hbujanda | 5:b4cf3c26e2ec | 28 | //#define RADIO_RESET NC /* TODO: specify your setup's GPIO (output) connected to the XBee module's reset pin */ |
hbujanda | 5:b4cf3c26e2ec | 29 | //#define RADIO_SLEEP_REQ NC /* TODO: specify your setup's GPIO (output) connected to the XBee module's SLEEP_RQ pin */ |
hbujanda | 5:b4cf3c26e2ec | 30 | //#define RADIO_ON_SLEEP NC /* TODO: specify your setup's GPIO (input) connected to the XBee module's ON_SLEEP pin */ |
miketrent77 | 9:cb89b64eb98e | 31 | #define DEBUG_TX USBTX /* TODO: specify your setup's Serial TX for debugging */ |
miketrent77 | 9:cb89b64eb98e | 32 | #define DEBUG_RX USBRX /* TODO: specify your setup's Serial RX for debugging (optional) */ |
hbujanda | 5:b4cf3c26e2ec | 33 | |
hbujanda | 5:b4cf3c26e2ec | 34 | #if !defined(RADIO_TX) |
hbujanda | 5:b4cf3c26e2ec | 35 | #error "Please define RADIO_TX pin" |
hbujanda | 5:b4cf3c26e2ec | 36 | #endif |
hbujanda | 5:b4cf3c26e2ec | 37 | |
hbujanda | 5:b4cf3c26e2ec | 38 | #if !defined(RADIO_RX) |
hbujanda | 5:b4cf3c26e2ec | 39 | #error "Please define RADIO_RX pin" |
hbujanda | 5:b4cf3c26e2ec | 40 | #endif |
hbujanda | 5:b4cf3c26e2ec | 41 | |
hbujanda | 5:b4cf3c26e2ec | 42 | #if !defined(RADIO_RESET) |
hbujanda | 5:b4cf3c26e2ec | 43 | #define RADIO_RESET NC |
hbujanda | 5:b4cf3c26e2ec | 44 | #warning "RADIO_RESET not defined, defaulted to 'NC'" |
hbujanda | 5:b4cf3c26e2ec | 45 | #endif |
hbujanda | 5:b4cf3c26e2ec | 46 | |
hbujanda | 5:b4cf3c26e2ec | 47 | #if defined(ENABLE_LOGGING) |
hbujanda | 5:b4cf3c26e2ec | 48 | #if !defined(DEBUG_TX) |
hbujanda | 5:b4cf3c26e2ec | 49 | #error "Please define DEBUG_TX" |
hbujanda | 5:b4cf3c26e2ec | 50 | #endif |
hbujanda | 5:b4cf3c26e2ec | 51 | #if !defined(DEBUG_RX) |
hbujanda | 5:b4cf3c26e2ec | 52 | #define DEBUG_RX NC |
hbujanda | 5:b4cf3c26e2ec | 53 | #warning "DEBUG_RX not defined, defaulted to 'NC'" |
hbujanda | 5:b4cf3c26e2ec | 54 | #endif |
hbujanda | 5:b4cf3c26e2ec | 55 | #endif |
hbujanda | 5:b4cf3c26e2ec | 56 | |
hbujanda | 5:b4cf3c26e2ec | 57 | #endif /* __CONFIG_H_ */ |