这篇教程C++ vCoRoutineSchedule函数代码示例写得很实用,希望能帮到您。
本文整理汇总了C++中vCoRoutineSchedule函数的典型用法代码示例。如果您正苦于以下问题:C++ vCoRoutineSchedule函数的具体用法?C++ vCoRoutineSchedule怎么用?C++ vCoRoutineSchedule使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。 在下文中一共展示了vCoRoutineSchedule函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。 示例1: vApplicationIdleHookvoid vApplicationIdleHook( void ){ for( ;; ) { vCoRoutineSchedule(); }}
开发者ID:Leowardi,项目名称:FreeRTOS,代码行数:7,
示例2: vApplicationIdleHookvoid vApplicationIdleHook( void ){ /* Schedule the co-routines. */ for( ;; ) { vCoRoutineSchedule(); }}
开发者ID:ufscdominic,项目名称:satelliteplatform,代码行数:8,
示例3: vApplicationIdleHook/*--------------------------------------------------------------------------- * The below callback function is called from Delayed ISR if configUSE_IDLE_HOOK * is configured as 1. *---------------------------------------------------------------------------*/void vApplicationIdleHook( void ){ #if WATCHDOG == WTC_IN_IDLE Kick_Watchdog(); #endif #if ( INCLUDE_StartFlashCoRoutines == 1 || INCLUDE_StartHookCoRoutines == 1 ) vCoRoutineSchedule(); #endif}
开发者ID:svn2github,项目名称:freertos,代码行数:13,
示例4: vApplicationIdleHook void vApplicationIdleHook( void ) { /* Are we using the idle task to kick the watchdog? See watchdog.h for watchdog kicking options. Note this is for demonstration only and is not a suggested method of servicing the watchdog in a real application. */ #if WATCHDOG == WTC_IN_IDLE Kick_Watchdog(); #endif vCoRoutineSchedule(); }
开发者ID:jbalcerz,项目名称:Stm32Discovery_FreeRTOS,代码行数:12,
示例5: vApplicationIdleHookvoid vApplicationIdleHook( void ){ /* The co-routines are executed in the idle task using the idle task hook. */ for( ;; ) { /* Schedule the co-routines. */ vCoRoutineSchedule(); /* Run the register check function between each co-routine. */ prvSetAndCheckRegisters(); }}
开发者ID:peterliu2,项目名称:tivaWare,代码行数:12,
示例6: vApplicationIdleHookvoid vApplicationIdleHook( void ){ /* The co-routines are executed in the idle task using the idle task hook. */ for( ;; ) { /* Schedule the co-routines. */ vCoRoutineSchedule(); /* Run the register check function between each co-routine. */ vSetAndCheckRegisters(); /* See if the comms task and co-routine has found any errors. */ if( uxGetCommsStatus() != pdPASS ) { vParTestSetLED( mainFAIL_LED, pdTRUE ); } }}
开发者ID:glocklueng,项目名称:proditronicproject,代码行数:19,
示例7: vApplicationIdleHookvoid vApplicationIdleHook( void ){ /* Schedule the co-routines from within the idle task hook. */ vCoRoutineSchedule();}
开发者ID:HclX,项目名称:freertos,代码行数:5,
注:本文中的vCoRoutineSchedule函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 C++ vCreateBlockTimeTasks函数代码示例 C++ vApplicationSetupTimerInterrupt函数代码示例 |