]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/CORTEX_STM32L152_Discovery_IAR/main_low_power.c
Start to remove unnecessary 'signed char *' casts from strings that are now just...
[freertos] / FreeRTOS / Demo / CORTEX_STM32L152_Discovery_IAR / main_low_power.c
index f87042bee3f7094a5dae698558810da8c0a38052..91d6f568d16ecb29e013c74b1d61d8406a5c6798 100644 (file)
@@ -215,8 +215,8 @@ void main_low_power( void )
        configASSERT( xQueue );\r
 \r
        /* Start the two tasks as described at the top of this file. */\r
-       xTaskCreate( prvQueueReceiveTask, ( const signed char * const ) "Rx", configMINIMAL_STACK_SIZE, NULL, configQUEUE_RECEIVE_TASK_PRIORITY, NULL );\r
-       xTaskCreate( prvQueueSendTask, ( const signed char * const ) "TX", configMINIMAL_STACK_SIZE, NULL, configQUEUE_SEND_TASK_PRIORITY, NULL );\r
+       xTaskCreate( prvQueueReceiveTask, "Rx", configMINIMAL_STACK_SIZE, NULL, configQUEUE_RECEIVE_TASK_PRIORITY, NULL );\r
+       xTaskCreate( prvQueueSendTask, "TX", configMINIMAL_STACK_SIZE, NULL, configQUEUE_SEND_TASK_PRIORITY, NULL );\r
 \r
        /* Start the scheduler running running. */\r
        vTaskStartScheduler();\r