UniRTOS SDK is a unified embedded development kit for multiple Quectel cellular module platforms. It provides consistent APIs and component architecture, supports cross-platform development and efficient porting, and integrates rich middleware, drivers, protocol stacks, and application examples to accelerate the development and deployment of intelligent embedded devices.
- Multi-platform support (for example, eigen_718)
- Based on the FreeRTOS kernel and adaptable to multiple hardware architectures
- Modular design with flexible feature trimming
- Rich drivers and middleware (networking, storage, audio, camera, FOTA, NVM, and more)
- Kconfig-based configuration with menuconfig UI support
- CMake build system with Ninja/Make backends
- Standard application examples and secondary development interfaces
├── build.sh # One-click build script (Windows)
├── CMakeLists.txt # Top-level CMake configuration
├── Kconfig # Main configuration entry
├── qos_applications/ # Application examples and business code
│ ├── app_init/ # Application initialization and registration
│ └── unirtos_std/ # Standard application set
├── qos_components/ # System components and middleware
│ ├── components/ # Modular feature components
│ └── system/ # System services, drivers, protocol stacks
├── qos_kernel/ # Platform kernel adaptation and libraries
│ └── eigen_718/ # Typical platform adaptation
├── qos_tools/ # Build toolchain and scripts
│ └── python/ # Python tools for build/config/package
└── ...
- Development Preparation
- Install Cross-Compilation Toolchain
- Install Python3
- Install Git
- Install
unirtos-cli:pip install unirtos-cli
Verify the environment:
python --version # Python3
git --version
unirtos --version # 1.0.5 or later
unirtos-cli version # 1.0.15 or laterunirtos-cli new unirtos-app
cd unirtos-appEdit env_config.json and configure at least:
sdk.versionbuild.module
Optional fields:
build.versionlibraries.list
unirtos-cli env-setupunirtos-cli menuconfig
unirtos-cli build
unirtos-cli clean- Build outputs are generated in
qos_build/release/<version>/under the project directory. <version>is resolved in this order: use the name passed byunirtos-cli build -v/--versionfirst; if not provided, usebuild.versionfromenv_config.json; otherwise, use the app root folder name (the folder containingenv_config.json).
Issues and pull requests are welcome. Please include a clear change summary and basic verification results in your submission.
For commercial support or custom development, please contact the maintainers.