Contiki 2.6
|
00001 /* 00002 * Copyright (c) 2010, Mariano Alvira <mar@devl.org> and other contributors 00003 * to the MC1322x project (http://mc1322x.devl.org) 00004 * All rights reserved. 00005 * 00006 * Redistribution and use in source and binary forms, with or without 00007 * modification, are permitted provided that the following conditions 00008 * are met: 00009 * 1. Redistributions of source code must retain the above copyright 00010 * notice, this list of conditions and the following disclaimer. 00011 * 2. Redistributions in binary form must reproduce the above copyright 00012 * notice, this list of conditions and the following disclaimer in the 00013 * documentation and/or other materials provided with the distribution. 00014 * 3. Neither the name of the Institute nor the names of its contributors 00015 * may be used to endorse or promote products derived from this software 00016 * without specific prior written permission. 00017 * 00018 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 00019 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00020 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00021 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 00022 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00023 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00024 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00025 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00026 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00027 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00028 * SUCH DAMAGE. 00029 * 00030 * This file is part of libmc1322x: see http://mc1322x.devl.org 00031 * for details. 00032 * 00033 * 00034 */ 00035 00036 #ifndef BOARD_QUAHOG10_H 00037 #define BOARD_QUAHOG10_H 00038 00039 #define LED_REDBANK_0 (0x1ULL << 2) 00040 #define LED_REDBANK_1 (0x1ULL << 0) 00041 #define LED_REDBANK_2 (0x1ULL << 28) 00042 #define LED_REDBANK_3 (0x1ULL << 25) 00043 #define LED_REDBANK_4 (0x1ULL << 43) 00044 00045 #define LED_CENTERRED (0x1ULL << 12) 00046 #define LED_CENTERGREEN (0x1ULL << 13) 00047 00048 #define LED_SIDERED (0x1ULL << 12) 00049 #define LED_SIDEGREEN (0x1ULL << 21) 00050 #define LED_SIDEYELLOW (0x1ULL << 35) 00051 00052 // Buttons in GPIO mode 00053 #define BUTTON1_OUT (0x1ULL << 23) 00054 #define BUTTON1_IN (0x1ULL << 27) 00055 #define BUTTON2_OUT (0x1ULL << 22) 00056 #define BUTTON2_IN (0x1ULL << 26) 00057 00058 #define GPIO_LED_RED GPIO_12 00059 #define GPIO_LED_GREEN GPIO_21 00060 #define GPIO_LED_BLUE GPIO_35 00061 00062 #define LED_RED 12 00063 #define LED_GREEN 21 00064 #define LED_BLUE 35 00065 00066 /* XTAL TUNE parameters */ 00067 /* see http://devl.org/pipermail/mc1322x/2009-December/000162.html */ 00068 /* for details about how to make this measurment */ 00069 00070 /* Econotag also needs an addtional 12pf on board */ 00071 /* Coarse tune: add 4pf */ 00072 #define CTUNE_4PF 1 00073 /* Coarse tune: add 0-15 pf (CTUNE is 4 bits) */ 00074 #define CTUNE 11 00075 /* Fine tune: add FTUNE * 156fF (FTUNE is 5bits) */ 00076 #define FTUNE 7 00077 00078 #include <std_conf.h> 00079 00080 #endif