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.

AM437X Starterware : building the examples

Expert 1700 points

Hi,

I would like to test the QSPI examples located at pdkxxxx\packages\ti\starterware\examples o nthe IDK board

where do I find \ create the relevant projects ?

  • Hi Inno,

    To build the QSPI examples, first run the PDK setup script:

    cd pdk_am437x_1_0_17/packages
    source ./pdksetupenv.sh

    Then navigate to the starterware directory and build the examples:

    cd ti/starterware
    
    To build the QSPI flash writer example:
    make qspi_app_flash_writer PLATFORM=am43xx-evm
    
    To build the QSPI read write example:
    make qspi_app_read_write PLATFORM=am43xx-evm

    The binaries will be located in:

    For the QSPI flash writer example:
    pdk_am437x_1_0_17/packages/ti/starterware/binary/qspi_app_flash_writer/bin/am43xx-evm/gcc
    
    For the QSPI read write example:
    pdk_am437x_1_0_17/packages/ti/starterware/binary/qspi_app_read_write/bin/am43xx-evm/gcc

    And to clean the binaries:

    For the QSPI flash writer example:
    make qspi_app_flash_writer_clean PLATFORM=am43xx-evm
    
    For the QSPI read write example:
    make qspi_app_read_write_clean PLATFORM=am43xx-evm

    Regards,

    Dillon