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

📄 realtime_test.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)#include "mos.h"#include "printf.h"#include "realtime.h"#include "clock.h"#include "led.h"/** * File:     timer_test.c       * Author:   Charles * Date:     05-29-2004 * * Description: This app is for testing the real time timer interface * */static uint8_t flag=0;static mos_alarm_t timer_alarm;static uint32_t time;void timer_alarm_func(void *data){   mos_led_toggle(1);   mos_alarm(&timer_alarm, 10, 0);   time = *real_timer_get_ticks();   flag=1;}void start(void){   printf("Realtime Test app, should display info every 1 minute.\n");   timer_alarm.func = timer_alarm_func;   real_timer_init();   real_timer_clear();   mos_alarm(&timer_alarm, 10, 0);   for(;;) {      if(flag) {	 flag=0;	 printf("time:\t%l ms\n",time);      }   }   }

⌨️ 快捷键说明

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