cc2420_recv.c

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

C
58
字号
//  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 + =
减小字号Ctrl + -
显示快捷键?