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 #include <mc1322x.h> 00037 #include <stdio.h> 00038 00039 #include "put.h" 00040 #include "tests.h" 00041 00042 void print_welcome(char* testname) { 00043 printf("mc1322x-test: %s\n\r",testname); 00044 printf("board: %s\n\r", STR2(BOARD)); 00045 } 00046 00047 void print_packet(volatile packet_t *p) { 00048 volatile uint8_t i,j,k; 00049 #define PER_ROW 16 00050 if(p) { 00051 printf("len 0x%02x lqi 0x%02x rx_time 0x%08x", p->length, p->lqi, (int)p->rx_time); 00052 for(j=0, k=0; j <= ( (p->length) / PER_ROW ); j++) { 00053 printf("\n\r"); 00054 for(i=0; i < PER_ROW; i++, k++) { 00055 if(k >= p->length ) { 00056 printf("\n\r"); 00057 return; 00058 } 00059 printf("%02x ",p->data[j*PER_ROW + i + p->offset]); 00060 } 00061 } 00062 } 00063 printf("\n\r"); 00064 return; 00065 } 00066 00067 void dump_regs(uint32_t base, uint32_t len) { 00068 volatile uint32_t i; 00069 00070 printf("base +0 +4 +8 +c +10 +14 +18 +1c \n\r"); 00071 for (i = 0; i < len; i ++) { 00072 if ((i & 7) == 0) { 00073 printf("%02lx",(uint32_t)(4 * i)); 00074 } 00075 printf(" %08lx",(uint32_t)*mem32(base+(4*i))); 00076 if ((i & 7) == 7) 00077 printf(NL); 00078 } 00079 printf(NL); 00080 }