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.

TI-RTOS for Tiva Version 2.16.01.14

Other Parts Discussed in Thread: SYSBIOS

I am using TM4C1294 with my application using TI-TOS version 2.14.0.10.

After updating to latest version 2.16.01.14,  I am getting error about can not locate 'ti.sysbios.fatfs' . Please see error below.


can't locate the package 'ti.sysbios.fatfs' along the path: 'C:/ti/tirtos_tivac_2_16_01_14/packages;C:/ti/tirtos_tivac_2_16_01_14/products/tidrivers_tivac_2_16_01_13/packages;C:/ti/tirtos_tivac_2_16_01_14/products/bios_6_45_02_31/packages;C:/ti/tirtos_tivac_2_16_01_14/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_01_14/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_01_14/products/ns_1_11_00_10/packages;C:/ti/ccsv6/ccs_base;C:/ti/xdctools_3_32_00_06_core/packages;..;'. Ensure that the package path is set correctly. .xdchelp /WC_SVS_20_TIRTOS_16 line 48 C/C++ Problem

Please Help!!!

  • Hi Tushar,

    FatFS has moved since 2.14 to the middleware package.  You now need to use the module in your .cfg file as:

    /* Configuration files */
    var FatFS = xdc.useModule('ti.mw.fatfs.FatFS');

    For .c files, include the header:
    /* C source files */
    #include <ti/mw/fatfs/ff.h>

    Please see this page for migration to 2.15 which you will need to get to 2.16:



    Best regards,
    Janet
  • Thanks Janet! It worked.

    FYI: TI-RTOS for Tiva only has version 2.14 and 2.16. So, Release note for 2.16 does not mention about these changes.

    Please see attached screen shot.

  • Hi Tushar,

    Yes, I don't see the 2.15 release notes archived under <TI-RTOS_INSTALL_DIR>/docs/relnotes_archive.  I just looked at the release notes, and clicked on the "Upgrade and Compatibility" link.  From there, I found this link:

    From there I eventually navigated to the TI-RTOS Migration 2 15 page.  Not very direct, I agree.

    Best regards,

    Janet