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.

MSP432E401Y: Add DriverLib to existing project.

Part Number: MSP432E401Y
Other Parts Discussed in Thread: MSP-EXP432E401Y,

Hello,

I am using the MSP432E401Y (currently via the MSP-EXP432E401Y LaunchPad).  I am branching my code off of the existing example "i2ctmp007_MSP_EXXP432401Y_nortos_ccs" only with different booster packs. For my application I need to set a specific bit rate for the I2C that is not part of the enumerated types.  I realize that to do this I need to use DriverLib calls, but I can't seem to get the DriverLib added to my existing project.  I have downloaded other example projects that use DriverLib, and those worked fine.

  • Hello Mitch,

    could you post a console output after a project build command?

  • I have a different console output based on the method I use to merge the two projects. I just need to know how to add the DriverLib to an existing project for the MSP432E401Y. (Specifically to the "i2ctmp007_MSP_EXXP432401Y_nortos_ccs" example project so that I can set a specific I2C clock speed).
  • Mitch,

    check this upper in blue:

    Does it help?

  • One remark.

    i2ctmp007.c has a bug.

    The declaration:

       uint16_t        temperature;

    and then:

                /*
                 * If the MSB is set '1', then we have a 2's complement
                 * negative value which needs to be sign extended
                 */
                if (rxBuffer[0] & 0x80) {
                    temperature |= 0xF000;
                }
               /*
                * For simplicity, divide the temperature value by 32 to get rid of
                * the decimal precision; see TI's TMP007 datasheet
                */
                temperature /= 32;
    
                Display_printf(display, 0, 0, "Sample %u: %d (C)\n", i, temperature);

    In case of negative value the '-' sign added and then shift to right by 5 bits.

    It is rubbish.

    It should be signed variable and casted to (int) as an argument for Display_printf().

    I have the same issue, no time to reread before the Post button hit.

  • Interesting, I actually do see "ti/devices/msp432e4/driverlib/lib/ccs/m4f/msp432e4_driverlib.a" in my file search path. The example code that I am trying to pull from is "i2c_mastermode_simple_transfer_MSP_EXP432E401y_nortos_ccs". I guess I thought that the DriverLib was not included because I cannot include the line "#include <ti/devices/msp432e4/driverlib/driverlib.h>" as done in the i2c example.
  • Could you check:

    and the "Linked Resources" almost top on the left of the above screen?

    The
    #include <xxyz/xyz/driverlib.h> and etc.

    statements need to be realigned with the paths above and the "Linked Resources".

  • It has ti on the list, and the driverlib is at: #include <ti/devices/msp432e4/driverlib/driverlib.h>. I see you have the same example open that I did, are you able to use "#include <ti/devices/msp432e4/driverlib/driverlib.h>" in i2ctmp007.c?
  • Still I do not know errors you see and conditions under which you obtain them.
    Guessing and assumptions are not the ways I prefer.

  • If I take the i2ctmp007 code and do nothing but add the line "#include <ti/devices/msp432e4/driverlib/driverlib.h>" to i2ctmp007.c, I get this output on the console:


    **** Build of configuration Debug for project i2ctmp007_TEST ****

    "C:\\ti\\ccsv8\\utils\\bin\\gmake" -k -j 4 all -O

    Building file: "../i2ctmp007.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/A0227523/Documents/Mitch/Tucson/SimpleLink/CCS_Workspace/i2ctmp007_TEST" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source/third_party/CMSIS/Include" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos/posix" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="i2ctmp007.d_raw" "../i2ctmp007.c"

    >> Compilation failure
    subdir_rules.mk:16: recipe for target 'i2ctmp007.obj' failed
    "C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source/ti/devices/msp432e4/inc/msp.h", line 53: fatal error #35: #error directive: "Failed to match a default include file"
    1 catastrophic error detected in the compilation of "../i2ctmp007.c".
    Compilation terminated.
    gmake: *** [i2ctmp007.obj] Error 1
    gmake: Target 'all' not remade because of errors.

    **** Build Finished ****
  • If i do a clean build i get:


    **** Build of configuration Debug for project i2ctmp007_TEST ****

    "C:\\ti\\ccsv8\\utils\\bin\\gmake" -k -j 4 all -O

    Building file: "../i2ctmp007.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/A0227523/Documents/Mitch/Tucson/SimpleLink/CCS_Workspace/i2ctmp007_TEST" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source/third_party/CMSIS/Include" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos/posix" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="i2ctmp007.d_raw" "../i2ctmp007.c"

    >> Compilation failure
    subdir_rules.mk:16: recipe for target 'i2ctmp007.obj' failed
    "C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source/ti/devices/msp432e4/inc/msp.h", line 53: fatal error #35: #error directive: "Failed to match a default include file"
    1 catastrophic error detected in the compilation of "../i2ctmp007.c".
    Compilation terminated.
    gmake: *** [i2ctmp007.obj] Error 1
    Building file: "../main_nortos.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/A0227523/Documents/Mitch/Tucson/SimpleLink/CCS_Workspace/i2ctmp007_TEST" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source/third_party/CMSIS/Include" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos/posix" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="main_nortos.d_raw" "../main_nortos.c"
    Finished building: "../main_nortos.c"

    Building file: "../MSP_EXP432E401Y.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/A0227523/Documents/Mitch/Tucson/SimpleLink/CCS_Workspace/i2ctmp007_TEST" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source/third_party/CMSIS/Include" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos" --include_path="C:/ti/simplelink_msp432e4_sdk_2_20_00_20/kernel/nortos/posix" --include_path="C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include" --advice:power=none -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="MSP_EXP432E401Y.d_raw" "../MSP_EXP432E401Y.c"
    Finished building: "../MSP_EXP432E401Y.c"

    gmake: Target 'all' not remade because of errors.

    **** Build Finished ****
  • "C:/ti/simplelink_msp432e4_sdk_2_20_00_20/source/ti/devices/msp432e4/inc/msp.h", line 53: fatal error #35: #error directive: "Failed to match a default include file"
    Line 53.
    Someone at TI should find why __MSP432E401Y__ is not defined.

    Could you add the __MSP432E401Y__ symbol to your project properties and check?

    TI-RTOS version (i2ctmp007_MSP_EXP432E401Y_tirtos_ccs) compiles fine.
  • Yes, that fixed the problem, thank you Tomasz!

**Attention** This is a public forum