This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/BOOSTXL-CC2650MA: FreeRTOS SAP example is not running but the TI-RTOS is working perfectly

Part Number: BOOSTXL-CC2650MA
Other Parts Discussed in Thread: CC2650

Tool/software: Code Composer Studio

HI TI and forum users

I am trying to use the SAP example provided in the SDK  BLE plugin V 1.40.00.42

I am not sure if this is the proper forum section to place my question in, but here goes:

I can't get the FreeRTOS example to work. I get no errors and no warning but when the code is on the board northing happens. 
In debug mode i get stuck at  configASSERT( pcName ); in task.c line 864, and acoording to RTOS weppage

pcName: A descriptive name for the task. This is mainly used to facilitate debugging, but can also be used to obtain a task handle.
The maximum length of a task's name is set using the configMAX_TASK_NAME_LEN parameter in FreeRTOSConfig.h.

i am not sure why it would be stopping there, but i am quite new to the RTOS side of embedded programming.

Also i have changed northing in the original code.

So i was wondering if anybody else have the same problem.

and sorry for any grammatik errors, if not understood i will try explain it better

Thank you for your time 

Mikkel

Some info on my setup.

CC2650 BP running on the MSP432P401R
Using the simplelink sdk ble plugin v1.40.00.42
and the CCS version is 8.1.0.00011 

My FreeRTOS version is 10.1.1

i am also using the BLE scanner app on my android phone to pick op the BLE signal.

TI-RTOS

and FreeRTOS i have cleared the terminal for not getting confused

  • i realise that the picturs is the same

    this is for TI-RTOS

  • Hi TI team
    so after a bit of testing, project_zero project with FreeRTOS doesn't work either.
    and so far as i can see it the pthread_create function that stops the whole code in both projects
    even, when switching to the IAR version, i cant run it, In same place the code gets stuck.

    Have you had anything like this before? or do you have any idea what might be causing this?

    thank you for your time and effort.

    Mikkel

  • Hi again
    Update after some time trying to find the pthread.c o have found it and debugged to where it gets stuck.
    this peice of code stop the whole thing:

    status = xTaskCreate((TaskFunction_t)_pthread_runStub, NULL /* name */,
    ((uint16_t)pAttr->stacksize) / sizeof(portSTACK_TYPE),
    (void *)thread, pAttr->priority, &(thread->freeRTOSTask));

    in the pthread_create
    i suspect its the NULL part but i am not sure since it should only be used for debugging as said in the reference manual for FreeRTOS for the xTaskCreate function.

    anybody got an idea how to handle this?

    Thanks for your time and help
    Mikkel

  • Hi Mikkel,

    We have not validated 1.40 against FreeRTOS 10.1. I know there were some issues when we tested it against newer SDKs. Specifically this looks like your issue.

    Jira TIRTOS-1596: FreeRTOS 10.1 requires a valid name when creating a task
    "TI-POSIX must use a valid name when creating a FreeRTOS task.

    FreeRTOS 10.1 requires a valid name (i.e. non NULL) when calling xTaskCreate(). The TI-POSIX pthread implementation is passing NULL for the name, which results in a run-time assertion from FreeRTOS.

    Not clear if the same "dummy" name can be reused, or a unique name must be computed for every task."

    Can you stick with FreeRTOS 9.0 since it has been validated against the 1.40 SDKs?

    Todd

  • HI Todd
    thank you for the response! 

    I will have to look into what differenceses there are on V10 vs V9 before i can say i can stick with V9 

    i Assumed that changing the FREERTOS_INSTAL_DIR variable was to change the version of FreeRTOS i wanted 

    But now i am getting errors now after i tried changing to V9 that also gives me errors in V10 if change back. 



    Any idea how to fix this? 


    thank you again for your time.

    Regards 

    Mikkel 

  • Hi Todd

    Alittle update i realised i had to follow
    for intergrating FreeRTOS into CCS.

    dev.ti.com/.../

    but the same errors is presisent in this from.

    Mikkel
  • Hi Mikkel,

    Can you do a rebuild (i.e. clean/build) of the FreeRTOS kernel project? Does that build properly. Then rebuild the OoB project. Do you still have the problem. If you do, can you copy/paste the entire build output log (from the console window) for both projects and attach it?

    For example, here is the kernel build output that I just did 

    kernelProjectBuild.txt
    **** Build of configuration Debug for project freertos_builds_MSP_EXP432P401R_release_ccs ****
    
    "C:\\ti\\ccs8_2_0_00007\\ccsv8\\utils\\bin\\gmake" -k -j 4 all -O 
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/DebugP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/DebugP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/DebugP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/DebugP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/MutexP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/MutexP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/MutexP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/MutexP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/ClockP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/ClockP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/ClockP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/ClockP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/HwiPMSP432_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/HwiPMSP432_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/HwiPMSP432_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/HwiPMSP432_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/PowerMSP432_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/PowerMSP432_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/PowerMSP432_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/PowerMSP432_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/SemaphoreP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/SemaphoreP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/SemaphoreP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/SemaphoreP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/SystemP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/SystemP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/SystemP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/dpl/SystemP_freertos.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/croutine.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/croutine.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/croutine.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/croutine.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/event_groups.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/event_groups.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/event_groups.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/event_groups.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/list.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/list.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/list.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/list.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/heap_4.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/queue.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/queue.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/queue.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/queue.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/portable/CCS/ARM_CM4F/portasm.d_raw" --obj_directory="freertos/portable/CCS/ARM_CM4F"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/portable/CCS/ARM_CM4F/port.d_raw" --obj_directory="freertos/portable/CCS/ARM_CM4F"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/timers.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/timers.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/timers.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/timers.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/tasks.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/tasks.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/tasks.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/tasks.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/startup/startup_msp432_ccs.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/startup/startup_msp432_ccs.d_raw" --obj_directory="freertos/startup"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/startup/startup_msp432_ccs.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/startup/startup_msp432_ccs.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/clock_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/clock_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/clock_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/clock_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/memory_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/memory_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/memory_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/memory_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_barrier_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_barrier_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_barrier_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_barrier_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/mqueue_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/mqueue_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/mqueue_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/mqueue_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_cond_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_cond_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_cond_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_cond_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_mutex_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_mutex_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_mutex_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_mutex_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/sched_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/sched_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/sched_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/sched_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_rwlock_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_rwlock_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_rwlock_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/pthread_rwlock_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/semaphore_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/semaphore_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/semaphore_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/semaphore_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/sleep_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/sleep_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/sleep_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/sleep_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/timer_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/workspace/SysCallbackCROV/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source" --include_path="C:/ti/simplelink_msp432_sdk_1_40_01_00/source/third_party/CMSIS/Include" --include_path="C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/timer_freertos.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/timer_freertos.c"
    Finished building: "C:/ti/simplelink_msp432_sdk_1_40_01_00/kernel/freertos/posix/timer_freertos.c"
     
    Building target: "freertos_builds_MSP_EXP432P401R_release_ccs.lib"
    Invoking: ARM Archiver
    "C:/ti/ccs8_2_0_00007/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armar" r "freertos_builds_MSP_EXP432P401R_release_ccs.lib" "./dpl/ClockP_freertos.obj" "./dpl/DebugP_freertos.obj" "./dpl/HwiPMSP432_freertos.obj" "./dpl/MutexP_freertos.obj" "./dpl/PowerMSP432_freertos.obj" "./dpl/SemaphoreP_freertos.obj" "./dpl/SystemP_freertos.obj" "./freertos/croutine.obj" "./freertos/event_groups.obj" "./freertos/heap_4.obj" "./freertos/list.obj" "./freertos/queue.obj" "./freertos/tasks.obj" "./freertos/timers.obj" "./freertos/portable/CCS/ARM_CM4F/port.obj" "./freertos/portable/CCS/ARM_CM4F/portasm.obj" "./freertos/startup/startup_msp432_ccs.obj" "./posix/clock_freertos.obj" "./posix/memory_freertos.obj" "./posix/mqueue_freertos.obj" "./posix/pthread_barrier_freertos.obj" "./posix/pthread_cond_freertos.obj" "./posix/pthread_freertos.obj" "./posix/pthread_mutex_freertos.obj" "./posix/pthread_rwlock_freertos.obj" "./posix/sched_freertos.obj" "./posix/semaphore_freertos.obj" "./posix/sleep_freertos.obj" "./posix/timer_freertos.obj" 
      ==>  new archive 'freertos_builds_MSP_EXP432P401R_release_ccs.lib'
      ==>  building archive 'freertos_builds_MSP_EXP432P401R_release_ccs.lib'
    Finished building target: "freertos_builds_MSP_EXP432P401R_release_ccs.lib"
     
    
    **** Build Finished ****
    

    Todd

  • Hi Todd 
    Thank you for your reply 
    i cleaned the projekts and rebuild them, and got some errors still in the kernel, which also makes the Projekt Zero to fail ofc. i have copied the error under here, and attatched the build output. 

    Description Resource Path Location Type
    gmake: *** No rule to make target 'C:/FreeRTOSv9.0.0/FreeRTOS/Source/stream_buffer.c', needed by 'freertos/stream_buffer.obj'. freertos_builds_MSP_EXP432P401R_release_ccs C/C++ Problem
    gmake: Target 'all' not remade because of errors. freertos_builds_MSP_EXP432P401R_release_ccs C/C++ Problem
    <a href="processors.wiki.ti.com/.../225"> function "vTaskInternalSetTimeOutState" declared implicitly clock.c /freertos_builds_MSP_EXP432P401R_release_ccs/posix line 284 C/C++ Problem
    This project contains 1 unresolved buildable linked resource(s). The project may not build as expected. freertos_builds_MSP_EXP432P401R_release_ccs project Problem

    Projekt Zero build.txt
    Buildfile generation error occurred..
    Cannot build project. Referenced project 'freertos_builds_MSP_EXP432P401R_release_ccs' contains build-errors.
    Build stopped..
    

    FreeRTOS kernel build.txt
    **** Build of configuration Debug for project freertos_builds_MSP_EXP432P401R_release_ccs ****
    
    "C:\\ti\\ccsv8\\utils\\bin\\gmake" -k -j 8 all -O 
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/DebugP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/DebugP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/DebugP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/DebugP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/MutexP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/MutexP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/MutexP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/MutexP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/ClockP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/ClockP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/ClockP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/ClockP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SemaphoreP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/SemaphoreP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SemaphoreP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SemaphoreP_freertos.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/croutine.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/croutine.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/croutine.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/croutine.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/PowerMSP432_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/PowerMSP432_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/PowerMSP432_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/PowerMSP432_freertos.c"
     
    gmake: *** No rule to make target 'C:/FreeRTOSv9.0.0/FreeRTOS/Source/stream_buffer.c', needed by 'freertos/stream_buffer.obj'.
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/HwiPMSP432_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/HwiPMSP432_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/HwiPMSP432_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/HwiPMSP432_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SystemP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/SystemP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SystemP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SystemP_freertos.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/list.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/list.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/list.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/list.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/portable/CCS/ARM_CM4F/portasm.d_raw" --obj_directory="freertos/portable/CCS/ARM_CM4F"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/heap_4.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/event_groups.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/event_groups.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/event_groups.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/event_groups.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/portable/CCS/ARM_CM4F/port.d_raw" --obj_directory="freertos/portable/CCS/ARM_CM4F"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/timers.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/timers.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/timers.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/timers.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/queue.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/queue.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/queue.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/queue.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/aeabi_portable.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/aeabi_portable.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/aeabi_portable.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/aeabi_portable.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/PTLS.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/PTLS.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/PTLS.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/PTLS.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/clock.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/clock.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/clock.c"
    "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/clock.c", line 284: warning #225-D: function "vTaskInternalSetTimeOutState" declared implicitly
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/clock.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/memory.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/memory.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/memory.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/memory.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/startup/startup_msp432_ccs.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/startup/startup_msp432_ccs.d_raw" --obj_directory="freertos/startup"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/startup/startup_msp432_ccs.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/startup/startup_msp432_ccs.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_barrier.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_barrier.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_barrier.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_barrier.c"
     
    Building file: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/tasks.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/tasks.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv9.0.0/FreeRTOS/Source/tasks.c"
    Finished building: "C:/FreeRTOSv9.0.0/FreeRTOS/Source/tasks.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_cond.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_cond.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_cond.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_cond.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/mqueue.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/mqueue.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/mqueue.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/mqueue.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sched.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/sched.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sched.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sched.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_mutex.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_mutex.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_mutex.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_mutex.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_rwlock.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_rwlock.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_rwlock.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_rwlock.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/semaphore.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/semaphore.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/semaphore.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/semaphore.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sleep.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/sleep.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sleep.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sleep.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/timer.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv9.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/timer.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/timer.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/timer.c"
     
    gmake: Target 'all' not remade because of errors.
    
    **** Build Finished ****
    

    thank you

    Mikkel

  • Hi again
    I just wanted to mention that streambuffer was added in FreeRTOS V10.0.0 as mentioned in www.freertos.org/History.txt
    Which confuses me alittle more, since the V9 kernel does not contain a streambuffer.

    Again Thank you for your time effort

    Mikkel

  • Hi again again 
    alittle update i think i have fixed the errors on the kernel by deleting the stream_buffer file from the kernel in CCS. Since V9 dont have that implemented 
    But i now have a warning i cannot get my head around. 

    Description Resource Path Location Type
    <a href="processors.wiki.ti.com/.../225"> function "vTaskInternalSetTimeOutState" declared implicitly clock.c /freertos_builds_MSP_EXP432P401R_release_ccs/posix line 284 C/C++ Problem

    yet if i try to find declaration it goes into the task.h file, to the vTaskInternalSetTimeOutState function. 

    could it be that task.c is not seen? 

    regards

    Mikkel

  • Hi Mikkel,

    Sorry, I thought you were on 1.40. By looking at the build output, you are using simplelink_msp432p4_sdk_2_20_00_12. That version requires FreeRTOS 10 (not 10.1). Can you try using that FreeRTOS 10 with an out of the box FreeRTOS kernel project (e.g. delete your current FreeRTOS kernel project from CCS and import it or any example that pulls it in).

    Todd
  • Hi Todd

    i am sorry, i must have miss communicated i am using the simplelink_sdk_ble_plugin_1_40_00_42 and the simplelink_msp432p4_sdk_2_20_00_12, for the MSP432P401R

    And that solved it, the CCS and IAR version is working as it should with FreeRTOS V10.

    I have attached the output just incase you still need it

    4186.FreeRTOS kernel build.txt
    **** Build of configuration Debug for project freertos_builds_MSP_EXP432P401R_release_ccs ****
    
    "C:\\ti\\ccsv8\\utils\\bin\\gmake" -k -j 8 all -O 
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/croutine.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/croutine.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/croutine.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/croutine.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/DebugP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/DebugP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/DebugP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/DebugP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/MutexP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/MutexP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/MutexP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/MutexP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/ClockP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/ClockP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/ClockP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/ClockP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SemaphoreP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/SemaphoreP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SemaphoreP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SemaphoreP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/PowerMSP432_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/PowerMSP432_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/PowerMSP432_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/PowerMSP432_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SystemP_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/SystemP_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SystemP_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/SystemP_freertos.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/HwiPMSP432_freertos.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="dpl/HwiPMSP432_freertos.d_raw" --obj_directory="dpl"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/HwiPMSP432_freertos.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/dpl/HwiPMSP432_freertos.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/list.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/list.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/list.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/list.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/heap_4.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/MemMang/heap_4.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/event_groups.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/event_groups.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/event_groups.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/event_groups.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/portable/CCS/ARM_CM4F/port.d_raw" --obj_directory="freertos/portable/CCS/ARM_CM4F"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/portable/CCS/ARM_CM4F/portasm.d_raw" --obj_directory="freertos/portable/CCS/ARM_CM4F"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F/portasm.asm"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/timers.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/timers.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/timers.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/timers.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/stream_buffer.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/stream_buffer.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/stream_buffer.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/stream_buffer.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/queue.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/queue.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/queue.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/queue.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/PTLS.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/PTLS.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/PTLS.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/PTLS.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/aeabi_portable.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/aeabi_portable.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/aeabi_portable.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/aeabi_portable.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/startup/startup_msp432_ccs.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/startup/startup_msp432_ccs.d_raw" --obj_directory="freertos/startup"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/startup/startup_msp432_ccs.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/kernel/freertos/startup/startup_msp432_ccs.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/clock.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/clock.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/clock.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/clock.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/memory.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/memory.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/memory.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/memory.c"
     
    Building file: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/tasks.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="freertos/tasks.d_raw" --obj_directory="freertos"  "C:/FreeRTOSv10.0.0/FreeRTOS/Source/tasks.c"
    Finished building: "C:/FreeRTOSv10.0.0/FreeRTOS/Source/tasks.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_barrier.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_barrier.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_barrier.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_barrier.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/mqueue.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/mqueue.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/mqueue.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/mqueue.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_cond.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_cond.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_cond.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_cond.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_mutex.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_mutex.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_mutex.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_mutex.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sched.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/sched.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sched.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sched.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/semaphore.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/semaphore.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/semaphore.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/semaphore.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_rwlock.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/pthread_rwlock.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_rwlock.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/pthread_rwlock.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sleep.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/sleep.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sleep.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/sleep.c"
     
    Building file: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/timer.c"
    Invoking: ARM Compiler
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/Users/Mikkel/Documents/CCS_oxy_workspace/freertos_builds_MSP_EXP432P401R_release_ccs" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/include" --include_path="C:/FreeRTOSv10.0.0/FreeRTOS/Source/portable/CCS/ARM_CM4F" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/ccs" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source" --include_path="C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/third_party/CMSIS/Include" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none --define=DeviceFamily_MSP432P401x --define=__MSP432P401R__ -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="posix/timer.d_raw" --obj_directory="posix"  "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/timer.c"
    Finished building: "C:/ti/simplelink_msp432p4_sdk_2_20_00_12/source/ti/posix/freertos/timer.c"
     
    Building target: "freertos_builds_MSP_EXP432P401R_release_ccs.lib"
    Invoking: ARM Archiver
    "C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/bin/armar" r "freertos_builds_MSP_EXP432P401R_release_ccs.lib" "./dpl/ClockP_freertos.obj" "./dpl/DebugP_freertos.obj" "./dpl/HwiPMSP432_freertos.obj" "./dpl/MutexP_freertos.obj" "./dpl/PowerMSP432_freertos.obj" "./dpl/SemaphoreP_freertos.obj" "./dpl/SystemP_freertos.obj" "./freertos/croutine.obj" "./freertos/event_groups.obj" "./freertos/heap_4.obj" "./freertos/list.obj" "./freertos/queue.obj" "./freertos/stream_buffer.obj" "./freertos/tasks.obj" "./freertos/timers.obj" "./freertos/portable/CCS/ARM_CM4F/port.obj" "./freertos/portable/CCS/ARM_CM4F/portasm.obj" "./freertos/startup/startup_msp432_ccs.obj" "./posix/PTLS.obj" "./posix/aeabi_portable.obj" "./posix/clock.obj" "./posix/memory.obj" "./posix/mqueue.obj" "./posix/pthread.obj" "./posix/pthread_barrier.obj" "./posix/pthread_cond.obj" "./posix/pthread_mutex.obj" "./posix/pthread_rwlock.obj" "./posix/sched.obj" "./posix/semaphore.obj" "./posix/sleep.obj" "./posix/timer.obj" 
      ==>  new archive 'freertos_builds_MSP_EXP432P401R_release_ccs.lib'
      ==>  building archive 'freertos_builds_MSP_EXP432P401R_release_ccs.lib'
    Finished building target: "freertos_builds_MSP_EXP432P401R_release_ccs.lib"
     
    
    **** Build Finished ****
    

    Thanks you for the help Todd it is much appriciated

    Mikkel