SPRADF9 January   2024 AM263P4 , AM263P4-Q1

 

  1.   1
  2.   Abstract
  3.   Trademarks
  4. 1Control Card Overview
  5. 2SDK and Dependencies
    1. 2.1 Software Development Kit
    2. 2.2 Python
    3. 2.3 OpenSSL
  6. 3 Code Composer Studio
    1. 3.1 Download/Install
  7. 4Power Connections
    1. 4.1 Hardware Setup
  8. 5Build and Run Example
    1. 5.1 Device Setup
      1. 5.1.1 Configure the Device's BOOT Mode to be Used With CCS Scripting
      2. 5.1.2 Setup UART Terminal
    2. 5.2 Example Project Setup
  9. 6References

Python

Python is only required for flashing files or booting applications to the on-board EVM Flash via UART in the SDK.

Below are the steps for installation:

For Windows

  1. Download the latest version of Python: www.python.org/downloads/windows/.
  2. Confirm Python is installed by running the below command in command prompt.
    C:\> python --version
    1. If the command does not return "Python 3.x", follow the link for more information: MCU+ SDK Python3
  3. Check if the python package manager "pip" is installed by running the below command.
    C:\> python -m pip --version
  4. Install below additional packages via "pip" that are needed for the flashing tools (If proxy not needed, leave blank).
    C:\> python -m pip install pyserial xmodem tqdm --proxy={your proxy server web-link and port}

For Linux

  1. Run the below command in Linux bash shell.
    $ sudo apt install python3 python3-pip
  2. Check that if python package manager "pip" is installed.
    $ pip3 --version
  3. Install below additional packages via "pip" that are needed for flashing tools (If proxy not needed, leave blank).
    $ pip3 install pyserial xmodem tqdm --proxy={your proxy server web-link and port}