realtime_test.c
来自「MANTIS是由科罗拉多大学开发的传感器网络嵌入式操作系统。 这是mantis」· C语言 代码 · 共 52 行
C
52 行
// 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 + =
减小字号Ctrl + -
显示快捷键?