freeRTOS软件定时器

所属分类:单片机开发
开发工具:C/C++
文件大小:274KB
下载次数:1
上传日期:2018-10-12 11:33:46
上 传 者醉眼看世界
说明:  freertos软件定时器的例程,教你如何使用软定时
(FreeRTOS software timer routines, teach you how to use soft timing.)

文件列表:
Main (0, 2016-05-05)
Main\Include (0, 2016-05-05)
Main\Include\MKL02Z4.h (197192, 2015-10-25)
Main\Sources (0, 2016-05-07)
Main\Sources\main.c (2762, 2016-05-07)
Project (0, 2016-05-07)
Project\Listings (0, 2016-05-07)
Project\Objects (0, 2016-05-07)
Project\Project.uvprojx (15573, 2016-05-06)
RTOS (0, 2016-05-05)
RTOS\croutine.c (15774, 2016-03-30)
RTOS\event_groups.c (26254, 2016-03-30)
RTOS\heap_1.c (7607, 2016-03-30)
RTOS\heap_2.c (12647, 2016-03-30)
RTOS\heap_3.c (5513, 2016-03-30)
RTOS\heap_4.c (16951, 2016-03-30)
RTOS\heap_5.c (18804, 2016-03-30)
RTOS\include (0, 2016-05-06)
RTOS\include\croutine.h (29136, 2016-03-30)
RTOS\include\deprecated_definitions.h (10171, 2016-03-30)
RTOS\include\event_groups.h (32885, 2016-03-30)
RTOS\include\FreeRTOS.h (34567, 2016-03-30)
RTOS\include\FreeRTOSConfig.h (7443, 2016-05-06)
RTOS\include\list.h (21172, 2016-03-30)
RTOS\include\mpu_wrappers.h (8673, 2016-03-30)
RTOS\include\portable.h (8687, 2016-03-30)
RTOS\include\portmacro.h (6788, 2016-03-30)
RTOS\include\projdefs.h (8187, 2016-03-30)
RTOS\include\queue.h (67339, 2016-03-30)
RTOS\include\semphr.h (50217, 2016-03-30)
RTOS\include\StackMacros.h (8553, 2016-03-30)
RTOS\include\task.h (95035, 2016-05-05)
RTOS\include\task.h~RFfeb4c5.TMP (95035, 2016-03-30)
RTOS\include\timers.h (62153, 2016-03-30)
RTOS\list.c (10996, 2016-03-30)
RTOS\port.c (12477, 2016-03-30)
RTOS\queue.c (83344, 2016-03-30)
RTOS\tasks.c (153449, 2016-03-30)
RTOS\timers.c (40755, 2016-03-30)
... ...

#ifndef FREERTOS_STDINT #define FREERTOS_STDINT /******************************************************************************* * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions * necessary to build the FreeRTOS code. It is provided to allow FreeRTOS to be * built using compilers that do not provide their own stdint.h definition. * * To use this file: * * 1) Copy this file into the directory that contains your FreeRTOSConfig.h * header file, as that directory will already be in the compilers include * path. * * 2) Rename the copied file stdint.h. * */ typedef signed char int8_t; typedef unsigned char uint8_t; typedef short int16_t; typedef unsigned short uint16_t; typedef long int32_t; typedef unsigned long uint32_t; #endif /* FREERTOS_STDINT */

近期下载者

相关文件


收藏者