Development Environment for Z2

Last Updated on : 2022-11-24 09:20:20download

This topic describes how to set up the development environment with Telink IDE for the Z2 chip.

The Z2 chip only supports Python 2.7.x.

Install IDE

  1. Download the IDE from Telink’s official website.

    Development Environment for Z2

  2. Install the software as per the instruction given. After successful installation, a shortcut will be created on your desktop.

    Development Environment for Z2

  3. Install a Python 2.7.x interpreter and set environment variables. Restart your computer after installation. Press the Window + R key to open the Run dialog. Enter CMD and press Enter for the command prompt. Then, enter Python. If Python 2.7 is displayed on the screen, it means the environment variable is configured.

    Development Environment for Z2

    Do not use any Python versions other than version 2.7.x. Otherwise, the production file cannot be built or errors occur.

Import and build

Import project

  1. Choose file > import.

    Development Environment for Z2

  2. Choose Existing Projects into Workspace and click Next.

    Development Environment for Z2

  3. Click Browse and select the directory that contains your project. The retrieved projects will be displayed in the Projects area.

  4. Select the project to be built and click Finish.

    Development Environment for Z2

    After your project is imported, your screen will look like this:

    Development Environment for Z2

Build firmware

You can choose to compile your code with incremental build or full build.

  • Incremental build: Right-click on the project name and then choose Build Project, or click on the hammer in the toolbar to build the project.
    The IDE compiles the modified file and its dependency file only, which provides short build time. However, if you have modified the .h file, some modifications might not be updated on the incremental build. In this case, you should try full build.

    Development Environment for Z2

  • Full build: Right-click on the project name and then choose Clean Project.
    The IDE will do a full build of the code from scratch, which takes much longer than the incremental build. If you have modified the header file, this method is recommended.

    Development Environment for Z2