⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cc2420_recv.c

📁 MANTIS是由科罗拉多大学开发的传感器网络嵌入式操作系统。 这是mantis的0.9.5版本的源码。
💻 C
字号:
//  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_recv.c       * Author:   Adam Torgerson * Date:     11-22-2004 * * Description: This app is meant to test the functionality of the * cc2420 low-level code. * */#include "mos.h"#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"comBuf send_buf;comBuf *recv_buf;void recv_thread(void){   printf("CC2420 Radio Test Receiver\n");   com_mode(IFACE_RADIO, IF_LISTEN);      while(1) {       recv_buf = com_recv(IFACE_RADIO);      if (recv_buf)	 printf("Got a packet: %s!\n", (char *)recv_buf->data);            com_free_buf(recv_buf);        }  }void start(void){   mos_thread_new(mos_command_daemon, 192, PRIORITY_NORMAL);   mos_thread_new(recv_thread, 128, PRIORITY_NORMAL);}

⌨️ 快捷键说明

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