cc2420_test.c

来自「MANTIS是由科罗拉多大学开发的传感器网络嵌入式操作系统。 这是mantis」· C语言 代码 · 共 71 行

C
71
字号
//  This file is part of MANTIS OS, Operating System//  See http://mantis.cs.colorado.edu/////  Copyright (C) 2003,2004,2005 University of Colorado, Boulder////  This program is free software; you can redistribute it and/or//  modify it under the terms of the mos license (see file LICENSE)/** * File:     cc2420_test.c       * Author:   Adam Torgerson, Charles Gruenwald III * Date:     9-10-2004 * * Description: This app is meant to test the functionality of the * cc2420 low-level code. * */#include <inttypes.h>#include "msched.h"  // MANTIS scheduler (gives us start)#include "command_daemon.h"#include "printf.h"#include "com.h"#include "led.h"#include "dev.h"#include "clock.h"#include "cc2420.h"uint16_t spi_get_register(uint8_t reg);void spi_set_register(uint8_t reg, uint16_t val);comBuf send_buf;comBuf *recv_buf;void other(void){      printf("CC2420 Radio Test Sender\n");   com_mode(IFACE_RADIO, IF_LISTEN);   send_buf.size = 6;   send_buf.data[0] = 'h';   send_buf.data[1] = 'e';   send_buf.data[2] = 'l';   send_buf.data[3] = 'l';   send_buf.data[4] = 'o';   send_buf.data[5] = '\0';      printf("Entering loop\n");         while(1) {      com_send(IFACE_RADIO, &send_buf);      mos_mdelay(500);      printf("Sent a packet\n");            mos_led_toggle(0);    }      }void start(void){   //mos_thread_new(mos_command_daemon, 192, PRIORITY_NORMAL);   mos_thread_new(other, 128, PRIORITY_NORMAL);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?