{"id":18797512,"url":"https://github.com/eclipse-threadx/cmsis-packs","last_synced_at":"2025-07-11T11:35:39.373Z","repository":{"id":183348578,"uuid":"623615043","full_name":"eclipse-threadx/cmsis-packs","owner":"eclipse-threadx","description":null,"archived":false,"fork":false,"pushed_at":"2024-01-19T01:56:37.000Z","size":16210,"stargazers_count":6,"open_issues_count":4,"forks_count":5,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-03T13:15:55.645Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eclipse-threadx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-04T18:18:03.000Z","updated_at":"2025-02-26T05:57:05.000Z","dependencies_parsed_at":"2024-12-29T17:52:16.899Z","dependency_job_id":"4d94cdce-51eb-40c8-a338-016f3873fb83","html_url":"https://github.com/eclipse-threadx/cmsis-packs","commit_stats":null,"previous_names":["azure-rtos/cmsis-packs","eclipse-threadx/cmsis-packs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eclipse-threadx/cmsis-packs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-threadx%2Fcmsis-packs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-threadx%2Fcmsis-packs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-threadx%2Fcmsis-packs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-threadx%2Fcmsis-packs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-threadx","download_url":"https://codeload.github.com/eclipse-threadx/cmsis-packs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-threadx%2Fcmsis-packs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264795838,"owners_count":23665241,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T22:08:33.985Z","updated_at":"2025-07-11T11:35:39.341Z","avatar_url":"https://github.com/eclipse-threadx.png","language":"C","readme":"# AzureRTOS-CMSIS-Packs\n\nThis repository contains Azure RTOS CMSIS-Packs for ThreadX, NetXDuo, FileX, USBX, GUIX and LevelX.\n\nIt also provides the scripts, data and source codes used to generate CMSIS-Packs and pack description files.\n\nPack description files (*.pdsc) are required to generate CMSIS-Packs.\n\n* For FileX, USBX, GUIX and LevelX, their pack description files are generated automatically based on their source codes and a template xml file (pdsc_template.xml). \nThe pdsc_template.xml defines data used to generate pdsc file, including pack's metadata, source file and porting file dictories, supported porting devices, release info, component decription, etc.\n\n* For ThreadX and NetXDuo, their pack description files are currently manually written.\n\n# Generate CMSIS-Packs on Ubuntu 20.4 or higher\n\n## clone this reop recursively with azure-rtos as submodules\n```\n    git clone --recursive https://github.com/azure-rtos/cmsis-packs.git\n    cd cmsis-packs\n```\n\n## Setup environment and install tools\n\nRequirements: Python 3.9 or higher. \n\n```\n    sudo apt-get update\n    sudo apt-get install p7zip-full curl libxml2-utils unzip\n    mkdir -p $HOME/Arm/Packs/ARM/CMSIS/5.9.0\n    wget https://github.com/ARM-software/CMSIS_5/releases/download/5.9.0/ARM.CMSIS.5.9.0.pack\n    unzip -q ARM.CMSIS.5.9.0.pack -d $HOME/Arm/Packs/ARM/CMSIS/5.9.0\n    rm ARM.CMSIS.5.9.0.pack\n    export CMSIS_PACK_ROOT=$HOME/Arm/Packs\n    export PATH=$PATH:$HOME/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Utilities/Linux64\n\n```\n## Generate cmsis-packs\n```\n    # generate packs for all Azure RTOS system components using the existing pack description files (*.pdsc).\n    python3 ./scripts/generate.py\n\n    # Generate CMSIS-Packs for specific Azure RTOS system components\n    python3 ./scripts/generate.py -m \"threadx, usbx\"\n\n    # Force to (re)generate pack description files (*.pdsc) before generating CMSIS-Packs\n    python3 ./scripts/generate.py -f\n    python3 ./scripts/generate.py -f -m \"filex, usbx\"\n\n```\n## Repository Structure\nThis repo add all Azure RTOS system components repo as submodules.\n\n```\n.\n    ├── scripts                                         # All script files used to generate cmsis-packs and pack description files\n    │   │\n    │   ├── generate.py                                 # top level python script to generate cmsis-packs and pack description files\n    │   ├── gen_pdsc.py                                 # python module to generate pack description file from azure-rtos source code and pdsc_template.xml\n    │   └── gen_pack.sh                                 # bash script to generate cmsis-pack\n    │\n    ├── data                                            # Each Azure RTOS system component's pdsc file, pdsc_template.xml, any additional files to be added to CMSIS-Pack, such as examples\n    │   │\n    │   ├── filex\n    │   │   ├── Microsoft.AzureRTOS-FileX.pdsc\n    │   │   └── pdsc_template.xml\n    │   ├── guix\n    │   │   ├── Microsoft.AzureRTOS-GUIX.pdsc\n    │   │   └── pdsc_template.xml\n    │   ├── levelx\n    │   │   ├── Microsoft.AzureRTOS-LevelX.pdsc\n    │   │   └── pdsc_template.xml\n    │   ├── netxduo\n    │   │   └── Microsoft.AzureRTOS-NetXDuo.pdsc\n    │   ├── threadx\n    │   │   ├── Microsoft.AzureRTOS-ThreadX.pdsc\n    │   │   └── examples                                # Threadx CMSIS-Pack example projects\n    │   └── usbx\n    │       ├── Microsoft.AzureRTOS-USBX.pdsc\n    │       └── pdsc_template.xml\n    │\n    ├── filex                                           # Azure RTOS source code from submodules\n    ├── guix\n    ├── levelx\n    ├── netxduo\n    ├── threadx\n    └── usbx\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-threadx%2Fcmsis-packs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-threadx%2Fcmsis-packs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-threadx%2Fcmsis-packs/lists"}