- Introduction
- What You Get
- Hardware Requirements
- Common Prerequisites
- Windows Guide
- Linux Guide
- Repository Structure
- Application Dependency Architecture
- Advanced Topics
- Support & Contributing
QTAC is a software suite that enables users to control Qualcomm devices remotely via a Qualcomm approved debug board connected to a host.
| Application | Description |
|---|---|
| Test Automation Controller (TAC) | Control Qualcomm devices remotely using UI |
| TAC Configuration Editor | Design configurable TAC UI based on GPIO use-cases |
| Device Catalog | Program debug board and view supported Qualcomm platforms |
| Command-line utilities | DevList, FTDICheck, LITEProgrammer, PSOCProgrammer, TACDump, UpdateDeviceList |
Required Hardware:
- Qualcomm approved debug board (FTDI, Cypress PSoC5LP or Microchip PIC32CX SG41-based)
- Qualcomm device to be controlled
- USB Cables: Type B Micro-USB (Board to Host) & Type-C (Device to Host)
Setup: Connect the device to the debug board (directly or via cable strip) and both to the host.
Important
PSOC debug boards must be factory-programmed with firmware. If the board isn't recognized, it likely lacks programming.
| Category | Software | Minimum Version |
|---|---|---|
| OS | Windows / Debian | Windows 10+ / Ubuntu 22.04+ |
| Compiler | MSVC 2022 / GCC | MSVC 2022 / GCC-11, G++-11, GLIBC-2.35 |
| UI Framework | Qt Open-source | 6.9.0+ |
Note
Review license terms for Visual Studio and Qt. MSVC 2022 is linked as Qt doesn't support MSVC 2026 yet.
- FTDI D2XX drivers: For debug board interaction.
- Qualcomm USB Drivers: To view device status.
Note
FTDI libraries are installed automatically during the cmake configuration step when building from source.
QTAC allows you to view streaming device logs as you transition the device between different states. The debug logs are streamed over USB serial interface(s).
To view these logs, you may install Putty or similar terminal software. QTAC does not depend on or use this software.
git clone https://github.com/qualcomm/qcom-test-automation-controller.git- Visual Studio: Install Desktop development with C++ and .NET desktop development.

- Qt: Install Qt 6.9+ for MSVC 2022 64-bit, Qt Serial Port and Qt Multimedia components.
Note
Installation using Qt Online Installer will require users to create a Qt account.
- Environment Variable:
setx QTBIN C:\Qt\<version>\msvc2022_64\bin
Execute build.bat to generate executables:
build.batBuild output:
- Debug:
__Builds\x64\Debug - Release:
__Builds\x64\Release
Usage:
__Builds\x64\Release\QTAC.exeImportant
- Installation using Qt Online Installer will require users to create a Qt account.
- If you're frequently working with Qt on Linux, consider adding the environment variables to
.bashrc. - Using
sudo apt install <package>will update setup packages. Review command usage to prevent issues with other applications.
-
Qt Installation (choose one):
Option A: Qt Online Installer
- Install Qt 6.9+ for GCC 64-bit and Qt Serial Port component using Qt Online Installer
Option B: Quick Installation via apt
sudo apt install qt6-base-dev qt6-serialport-dev
-
Runtime Dependencies:
sudo apt install libxcb-cursor0 libpcre2-16-0 libxkbcommon-x11-0 libxcb-xkb1 libxcb-icccm4 libxcb-shape0 libxcb-keysyms1 libgl1 libegl-dev libxcb-xinerama0 libpulse-dev
-
Environment Variable:
export QTBIN=/path/to/Qt/directory/<version>/gcc_64/bin
Execute build.sh to generate executables:
./build.shBuild output:
- Debug:
__Builds/x64/Debug - Release:
__Builds/x64/Release
Note
Ensure that make is available in your environment before building.
Usage:
./__Builds/x64/Release/QTAC| Directory | Content |
|---|---|
.github |
CI/CD build pipelines |
configurations |
Platform-specific pin configurations |
docs |
Documentation and guides |
examples |
Device-control automation scripts |
interfaces |
APIs for C++, Python, C#, and Java |
src |
Source files (Applications & Libraries) |
third-party |
External dependency scripts |
- Security: Review SECURITY.md for vulnerability reporting.
- Contributing: Review License and Code of Conduct.


