up freertos v9.0.0

This commit is contained in:
pvvx 2017-05-08 04:55:33 +03:00
parent abb51466bd
commit b882fe7efb
132 changed files with 50587 additions and 2707 deletions

View file

@ -447,7 +447,7 @@ void start_log_service(void)
result = xTaskGenericCreate(
log_service,
( signed portCHAR * ) "log_service",
( signed portCHAR * ) "log_srv",
STACKSIZE,
NULL,
tskIDLE_PRIORITY + 5,
@ -455,7 +455,7 @@ void start_log_service(void)
stack_addr,
NULL);
#else
result = xTaskCreate( log_service, ( signed portCHAR * ) "log_service", STACKSIZE, NULL, tskIDLE_PRIORITY + 5, &CreatedTask );
result = xTaskCreate( log_service, ( signed portCHAR * ) "log_srv", STACKSIZE, NULL, tskIDLE_PRIORITY + 5, &CreatedTask );
#endif
if(result != pdPASS) {