本文整理汇总了C++中prvSetupHardware函数的典型用法代码示例。如果您正苦于以下问题:C++ prvSetupHardware函数的具体用法?C++ prvSetupHardware怎么用?C++ prvSetupHardware使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了prvSetupHardware函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: main
int main( void )
{
prvSetupHardware();
/* Create the queue used to pass "I'm alive" messages to the check task. */
xFileScopeCheckQueue = xQueueCreate( 1, sizeof( unsigned long ) );
/* One check task uses the task parameter to receive the queue handle.
This allows the file scope variable to be accessed from within the task.
The pvParameters member of xRegTest2Parameters can only be set after the
queue has been created so is set here. */
xRegTest2Parameters.pvParameters = xFileScopeCheckQueue;
/* Create the three test tasks. Handles to the created tasks are not
required, hence the second parameter is NULL. */
xTaskCreateRestricted( &xRegTest1Parameters, NULL );
xTaskCreateRestricted( &xRegTest2Parameters, NULL );
xTaskCreateRestricted( &xCheckTaskParameters, NULL );
/* Create the tasks that are created using the original xTaskCreate() API
function. */
xTaskCreate( prvOldStyleUserModeTask, /* The function that implements the task. */
( signed char * ) "Task1", /* Text name for the task. */
100, /* Stack depth in words. */
NULL, /* Task parameters. */
3, /* Priority and mode (user in this case). */
NULL /* Handle. */
);
xTaskCreate( prvOldStylePrivilegedModeTask, /* The function that implements the task. */
( signed char * ) "Task2", /* Text name for the task. */
100, /* Stack depth in words. */
NULL, /* Task parameters. */
( 3 | portPRIVILEGE_BIT ), /* Priority and mode. */
NULL /* Handle. */
);
/* Start the scheduler. */
vTaskStartScheduler();
/* Will only get here if there was insufficient memory to create the idle
task. */
for( ;; );
return 0;
}
开发者ID:ammarkham,项目名称:moos,代码行数:45,代码来源:main.c
示例2: main
/*
* Creates the majority of the demo application tasks before starting the
* scheduler.
*/
void main(void)
{
xTaskHandle xCreatedTask;
prvSetupHardware();
/* Start the reg test tasks which test the context switching mechanism. */
xTaskCreate( vRegTest1Task, "RegTst1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, &xCreatedTask );
xPortUsesFloatingPoint( xCreatedTask );
xTaskCreate( vRegTest2Task, "RegTst2", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, &xCreatedTask );
xPortUsesFloatingPoint( xCreatedTask );
xTaskCreate( vuIP_Task, "uIP", mainuIP_STACK_SIZE, NULL, mainuIP_TASK_PRIORITY, NULL );
/* Start the check task as described at the top of this file. */
xTaskCreate( prvCheckTask, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );
/* Start the standard demo tasks. These don't perform any particular useful
functionality, other than to demonstrate the FreeRTOS API being used. */
vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
vCreateBlockTimeTasks();
vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );
vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );
vStartQueuePeekTasks();
vStartRecursiveMutexTasks();
/* Start the math tasks as described at the top of this file. */
vStartMathTasks( mainFLOP_TASK_PRIORITY );
/* The suicide tasks must be created last as they need to know how many
tasks were running prior to their creation in order to ascertain whether
or not the correct/expected number of tasks are running at any given time. */
vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );
/* Start the tasks running. */
vTaskStartScheduler();
/* Will only get here if there was insufficient heap memory to create the idle
task. Increase the configTOTAL_HEAP_SIZE setting in FreeRTOSConfig.h. */
for( ;; );
}
开发者ID:Dzenik,项目名称:FreeRTOS_TEST,代码行数:49,代码来源:main.c
示例3: main
int main (void)
{
char i;
prvSetupHardware ();
for(i=0; i<sizeof(ob_data); i++) {
send_buffer.payload[i]=0;
recv_buffer.payload[i]=0;
}
xTaskCreate (vUSBCDCTask , (signed portCHAR *) "USB_CDC" , mainUSB_TASK_STACK , NULL, mainUSB_PRIORITY, NULL);
vTaskStartScheduler ();
ob_app_start=xTaskGetTickCount();
ob_send_time=xTaskGetTickCount();
return 0;
}
开发者ID:HumboldtWirelessLab,项目名称:openbeacon-brn,代码行数:18,代码来源:main.c
示例4: main
int main(void)
{
prvSetupHardware();
queueCreation();
taskCreation();
__enable_irq();
chSysInit();
while (TRUE){
}
return 0;
}
开发者ID:ptracton,项目名称:experimental,代码行数:18,代码来源:main.c
示例5: main
/*-----------------------------------------------------------*/
int main( void )
{
/* Prepare the hardware to run this demo. */
prvSetupHardware();
/* The mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top
of this file. */
xTaskCreate( prvDataSendTask, /* The function that implements the task. */
( signed char * ) "DataSend", /* The text name assigned to the task - for debug only as it is not used by the kernel. */
DATA_SEND_TASK_STACK_SIZE, /* The size of the stack to allocate to the task. */
( void * ) DATA_SEND_TASK_PARAMETER, /* The parameter passed to the task - just to check the functionality. */
DATA_SEND_TASK_PRIORITY, /* The priority assigned to the task. */
NULL ); /* The task handle is not required, so NULL is passed. */
xTaskCreate( prvDataReceiveTask, /* The function that implements the task. */
( signed char * ) "Sensor", /* The text name assigned to the task - for debug only as it is not used by the kernel. */
DATA_RECEIVE_TASK_STACK_SIZE, /* The size of the stack to allocate to the task. */
( void * ) DATA_RECEIVE_PARAMETER, /* The parameter passed to the task - just to check the functionality. */
DATA_RECEIVE_TASK_PRIORITY, /* The priority assigned to the task. */
NULL ); /* The task handle is not required, so NULL is passed. */
xTaskCreate( prvControlTask, /* The function that implements the task. */
( signed char * ) "Sensor", /* The text name assigned to the task - for debug only as it is not used by the kernel. */
CONTROL_TASK_STACK_SIZE, /* The size of the stack to allocate to the task. */
( void * ) CONTROL_PARAMETER, /* The parameter passed to the task - just to check the functionality. */
CONTROL_TASK_PRIORITY, /* The priority assigned to the task. */
NULL ); /* The task handle is not required, so NULL is passed. */
// xTaskCreate( prvBlinkLedTask, /* The function that implements the task. */
// ( signed char * ) "Led", /* The text name assigned to the task - for debug only as it is not used by the kernel. */
// configMINIMAL_STACK_SIZE, /* The size of the stack to allocate to the task. */
// ( void * ) LED_BLINK_PARAMETER, /* The parameter passed to the task - just to check the functionality. */
// BLINKY_TASK_PRIORITY, /* The priority assigned to the task. */
// NULL ); /* The task handle is not required, so NULL is passed. */
/* Start the tasks and timer running. */
vTaskStartScheduler();
/* If all is well, the scheduler will now be running, and the following
line will never be reached. If the following line does execute, then
there was insufficient FreeRTOS heap memory available for the idle and/or
timer tasks to be created. See the memory management section on the
FreeRTOS web site for more details. */
for( ;; );
return 0;
}
开发者ID:Cheng-SG,项目名称:BubbleCode,代码行数:45,代码来源:main.c
示例6: main
int main(void) {
/* Setup the hardware. */
prvSetupHardware();
/* Create the SPI mutex */
xSPIMutex = xSemaphoreCreateMutex();
/* Initialize the MAC layer */
mac_init(xSPIMutex, packet_received, CHANNEL);
/* Add the local task */
xTaskCreate( vSendingTask, (const signed char*) "sender", configMINIMAL_STACK_SIZE, NULL, 1, NULL );
/* Start the scheduler. */
vTaskStartScheduler();
/* As the scheduler has been started we should never get here! */
return 0;
}
开发者ID:EDAyele,项目名称:wsn430,代码行数:19,代码来源:mobile.c
示例7: main
/* Create all the demo tasks then start the scheduler. */
void main( void )
{
/* Just sets up the LED outputs. */
prvSetupHardware();
/* Standard demo tasks. */
vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
vStartQueuePeekTasks();
/* Create the check task as described at the top of this file. */
xTaskCreate( prvCheckTask, "Check", configMINIMAL_STACK_SIZE, mainCHECK_PARAMETER, mainCHECK_TASK_PRIORITY, NULL );
/* Create the RegTest tasks as described at the top of this file. */
xTaskCreate( vRegTest1, "Reg1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
xTaskCreate( vRegTest2, "Reg2", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
#ifdef __IAR_V850ES_Fx3__
{
/* The extra IO required for the com test and led flashing tasks is only
available on the application board, not the target boards. */
vAltStartComTestTasks( mainCOMTEST_PRIORITY, mainBAUD_RATE, mainCOMTEST_LED );
vStartLEDFlashTasks( mainFLASH_PRIORITY );
/* The Fx3 also has enough RAM to run loads more tasks. */
vStartRecursiveMutexTasks();
vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
}
#endif
/* The suicide tasks must be created last as they need to know how many
tasks were running prior to their creation in order to ascertain whether
or not the correct/expected number of tasks are running at any given time. */
vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );
/* Start the scheduler. */
vTaskStartScheduler();
/* If this line is reached then vTaskStartScheduler() returned because there
was insufficient heap memory remaining for the idle task to be created. */
for( ;; );
}
开发者ID:jbalcerz,项目名称:Stm32Discovery_FreeRTOS,代码行数:44,代码来源:main.c
示例8: __attribute__
void __attribute__((noreturn)) mainloop (void)
{
prvSetupHardware ();
vLedInit();
xTaskCreate (vUSBCDCTask, (signed portCHAR *) "USB", TASK_USB_STACK,
NULL, TASK_USB_PRIORITY, NULL);
vCmdInit();
vInitProtocolLayer();
vLedSetGreen(0);
vTaskStartScheduler ();
while(1);
}
开发者ID:bomma,项目名称:openbeacon,代码行数:19,代码来源:main.c
示例9: main
/* See the documentation page for this demo on the FreeRTOS.org web site for
full information - including hardware setup requirements. */
int main( void )
{
/* Prepare the hardware to run this demo. */
prvSetupHardware();
/* The configCREATE_LOW_POWER_DEMO setting is described at the top of
this file. */
#if configCREATE_LOW_POWER_DEMO == 1
{
main_low_power();
}
#else
{
main_full();
}
#endif
return 0;
}
开发者ID:RitikaGupta1207,项目名称:freertos,代码行数:21,代码来源:main.c
示例10: main
/**
* \brief Run USART unit tests
*/
int main(void)
{
/* Prepare the hardware to run this demo. */
prvSetupHardware();
/* Create the test task. */
create_usart_tasks(BOARD_USART, 1024, tskIDLE_PRIORITY);
/* Start the RTOS scheduler. */
vTaskStartScheduler();
/* If all is well, the scheduler will now be running, and the following line
will never be reached. If the following line does execute, then there was
insufficient FreeRTOS heap memory available for the idle and/or timer tasks
to be created. See the memory management section on the FreeRTOS web site
for more details. */
for (;;) {
}
}
开发者ID:Timvrakas,项目名称:samd21_gcc,代码行数:22,代码来源:usart_unit_tests.c
示例11: main
int main( void )
{
/* Configure the hardware for use by this demo. */
prvSetupHardware();
//xTaskCreate( vuIP_Task, ( signed char * ) "uIP", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
//make a task for UART
char ip_address[32];
LCD_Init();
LCD_ClearScreen();
sprintf(ip_address , "IP Address: %d.%d.%d.%d",configIP_ADDR0,configIP_ADDR1,configIP_ADDR2,configIP_ADDR3);
LCD_PrintText(ip_address);
//xTaskCreate( vUARTTask, ( signed char * ) "UART_Modem", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
/* Start the scheduler so the created tasks start executing. */
xTaskCreate( vLEDTask, ( signed char * ) "LED_TOGGOLE", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
xTaskCreate( vLCDTask, ( signed char * ) "LCD_DISPLAY", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
xTaskCreate( vuIP_Task, ( signed char * ) "uIP", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY+1, NULL );
//xTaskCreate( vUSBTask, ( signed char * ) "USB_Device", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
xTaskCreate( usb_host_main, ( signed char * ) "USB_Device", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY+3, NULL );
//xTaskCreate( vZigbeeTask, ( signed char * ) "Zigbee", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
vTaskStartScheduler();
/* If all is well we will never reach here as the scheduler will now be
running the tasks. If we do reach here then it is likely that there was
insufficient heap memory available for a resource to be created. */
for( ;; );
return 0;
}
开发者ID:Lzyuan,项目名称:STE-LPC1768-,代码行数:43,代码来源:main.c
示例12: main
int main( void )
{
/* Prepare the hardware to run this demo. */
prvSetupHardware();
/* The configCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top
of this file. */
#if configCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1
{
main_blinky();
}
#else
{
main_full();
}
#endif
return 0;
}
开发者ID:AskDrCatcher,项目名称:FreeRTOS,代码行数:19,代码来源:main.c
示例13: main
/* The main function */
int main(void)
{
prvSetupHardware();
xTaskCreate(prvLedBlink1,(signed char*)"LED",configMINIMAL_STACK_SIZE,
NULL, tskIDLE_PRIORITY + 1, NULL);
xTaskCreate(prvLedBlink2,(signed char*)"LED",configMINIMAL_STACK_SIZE,
NULL, tskIDLE_PRIORITY + 2, NULL);
xTaskCreate(prvLedBlink3,(signed char*)"LED",configMINIMAL_STACK_SIZE,
NULL, tskIDLE_PRIORITY + 3, NULL);
xTaskCreate(prvLedBlink4,(signed char*)"LED",configMINIMAL_STACK_SIZE,
NULL, tskIDLE_PRIORITY + 4, NULL);
/* Start the scheduler. */
vTaskStartScheduler();
while(1);
}
开发者ID:dutov,项目名称:sawush,代码行数:20,代码来源:main.c
示例14: main
/**
* \brief Main code entry point.
*/
int main( void )
{
xTimerHandle xMonitorTimer;
/* Prepare the hardware */
prvSetupHardware();
/* Init Prime Stack */
vPrimeStackInitTask();
/* Configure console */
configure_dbg_console();
puts(STRING_HEADER);
/* Debug port for AppEmu */
if (!pio_get(PIN_APPEMU_PIO, PIN_APPEMU_TYPE, PIN_APPEMU_MASK)) {
/* Init AppEmu Application */
vAppEmuInitTask();
}
/* Create timer to monitor tasks execution */
xMonitorTimer = xTimerCreate(
(const signed char *const)"Monitor timer",
SIGNALLING_TIMER_RATE,
pdTRUE,
NULL,
_prime_signalling
);
configASSERT(xMonitorTimer);
xTimerStart(xMonitorTimer, SIGNALLING_TIMER_RATE);
/* Start the tasks and timer running. */
vTaskStartScheduler();
/* If all is well, the scheduler will now be running, and the following
* line will never be reached. If the following line does execute, then
* there was insufficient FreeRTOS heap memory available for the idle
* and/or
* timer tasks to be created. See the memory management section on the
* FreeRTOS web site for more details. */
for (;;) {
}
}
开发者ID:ThucVD2704,项目名称:femto-usb-blink-example,代码行数:46,代码来源:main.c
示例15: prvSetupTask
/*********************************************************************************************
* Setup hardware/software
*********************************************************************************************/
void prvSetupTask( void *pvParameters ) {
// Setup hardware
prvSetupHardware();
// Test LEDs and indicate program is starting
prvBlinkLeds();
// Setup WiFi connection
prvSetupWifi();
// Set mode to allModes
my_mode = allModes;
// Iterate through each SAV to initialize parameters
uint8_t sav;
for(sav=0; sav<NUMBER_SAV; sav++) {
// Set the SAVs default mode
// mode_savs[sav] = mode1;
// TODO: change back to default
mode_savs[sav] = mode2;
// Mark the WiFi channels as uninitialized
wifi_channel[sav] = 0xFF;
// Initialize all SAVs as inactive
wifi_channel_active[sav] = FALSE;
}
// Indicate that the next channel to be assigned is channel 0
wifi_next_channel = 0;
// Create queue for packets
xPacketQueue = xQueueCreate( maxPacketQueueLength, MAX_LENGTH*sizeof(uint8_t) );
// Create initial task to connect to Base Station
// xTaskCreate( prvConnectTask, "", 300 * sizeof(uint8_t), NULL, connectPriority, xConnectHandle );
xTaskCreate( prvTrafficLightTask, "", 600 * sizeof(uint8_t), NULL, trafficLightPriority, xTrafficLightHandle );
// Delete this task
vTaskDelete( xSetupHandle );
}
开发者ID:paev6712,项目名称:MAVIS,代码行数:46,代码来源:main.c
示例16: main
void main( void )
{
/* Configure the NVIC, LED outputs and button inputs. */
prvSetupHardware();
/* Create the timers that are specific to this demo - other timers are
created as part of the standard demo within vStartTimerDemoTask. */
prvCreateDemoSpecificTimers();
/* Create a lot of 'standard demo' tasks. Nearly 40 tasks are created in
this demo. For a much simpler demo, select the 'blinky' build
configuration. */
vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
vCreateBlockTimeTasks();
vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
vStartQueuePeekTasks();
vStartRecursiveMutexTasks();
vStartTimerDemoTask( mainTIMER_TEST_PERIOD );
vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
vStartCountingSemaphoreTasks();
vStartDynamicPriorityTasks();
/* The web server task. */
xTaskCreate( vuIP_Task, "uIP", mainuIP_STACK_SIZE, NULL, mainuIP_TASK_PRIORITY, NULL );
/* The suicide tasks must be created last, as they need to know how many
tasks were running prior to their creation in order to ascertain whether
or not the correct/expected number of tasks are running at any given
time. */
vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );
/* Start the tasks and timers running. */
vTaskStartScheduler();
/* If all is well, the scheduler will now be running, and the following line
will never be reached. If the following line does execute, then there was
insufficient FreeRTOS heap memory available for the idle and/or timer tasks
to be created. See the memory management section on the FreeRTOS web site
for more details. */
for( ;; );
}
开发者ID:Eclo,项目名称:FreeRTOS,代码行数:42,代码来源:main-full.c
示例17: main
void main( void )
{
/* Configure the hardware for use by this demo. */
prvSetupHardware();
/* Create the uIP task. The WEB server runs in this task. */
xTaskCreate( vuIP_Task, ( signed char * ) "uIP", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
//***xTaskCreate( prvPrintTask, ( signed portCHAR * ) "PRINTF", 300, NULL, mainCHECK_TASK_PRIORITY, NULL );
/* Start the scheduler. */
vTaskStartScheduler();
/*small test*/
printf("Error: insufficient memory\n");
/* Will only get here if there was insufficient memory to create the idle
task. The idle task is created within vTaskStartScheduler(). */
for( ;; );
}
开发者ID:HKUST-Robotics,项目名称:USTSmartcar,代码行数:20,代码来源:main.c
示例18: main
int main( void )
{
/* Configure the hardware ready to run the demo. */
prvSetupHardware();
/* The mainSELECTED_APPLICATION setting is described at the top
of this file. */
#if( mainSELECTED_APPLICATION == 0 )
{
main_blinky();
}
#elif( mainSELECTED_APPLICATION == 1 )
{
main_full();
}
#endif
/* Don't expect to reach here. */
return 0;
}
开发者ID:Eclo,项目名称:FreeRTOS,代码行数:20,代码来源:main.c
示例19: main
int main( void )
{
/* Configure the hardware ready to run the demo. */
prvSetupHardware();
/* The configCREATE_LOW_POWER_DEMO setting is described at the top
of this file. */
#if( configCREATE_LOW_POWER_DEMO == 1 )
{
main_low_power();
}
#else
{
main_full();
}
#endif
/* Should not get here. */
return 0;
}
开发者ID:AlexShiLucky,项目名称:freertos,代码行数:20,代码来源:main.c
示例20: main
int main( void )
{
prvSetupHardware();
PRINTF("hello from freeRTOS...\n");
xTaskCreate( prvCheckTask, "Check", mainCHECK_TASK_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );
xTaskCreate( prvCheckTask2, "Check2", mainCHECK_TASK_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY , NULL );
/* Start the scheduler. */
vTaskStartScheduler();
/* Will only get here if there was not enough heap space to create the
idle task. */
return 0;
}
开发者ID:AndrewZamansky,项目名称:uCProjects,代码行数:20,代码来源:main.c
注:本文中的prvSetupHardware函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论