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

📄 thread_sleep_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 "command_daemon.h"#include "msched.h"/** * File:     thread_sleep_test.c       * Author:   Charles * Date:     05-29-2004 * * Description: This app is for testing the thread_sleep_call(). * */uint16_t sleep_time=32; //ammount of time to sleep forvoid sleepy_thread(); //the thread we'll be putting to sleepvoid set_sleep();void start(void){   mos_thread_new(mos_command_daemon, 128, PRIORITY_NORMAL);   mos_thread_new(sleepy_thread, 128, PRIORITY_NORMAL);   mos_register_function("set_sleep", set_sleep);}void sleepy_thread(){   uint32_t *ms_ptr;   printf("Thread Sleep Test App.\n");   real_timer_init();   for(;;)   {      real_timer_clear();      mos_thread_sleep(sleep_time);      ms_ptr=real_timer_get_ticks();      printf("asked to sleep:\t%d, actual time:\t%l ms\n",	     sleep_time, *ms_ptr);   }}void set_sleep(){   sleep_time=prompt_long("enter the ammount of time to sleep for:");}

⌨️ 快捷键说明

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