Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ARM.CMSIS-FreeRTOS.pdsc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>

<package schemaVersion="1.7.40" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Open-CMSIS-Pack/Open-CMSIS-Pack-Spec/v1.7.40/schema/PACK.xsd">
<package schemaVersion="1.7.54" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Open-CMSIS-Pack/Open-CMSIS-Pack-Spec/v1.7.54/schema/PACK.xsd">
<vendor>ARM</vendor>
<name>CMSIS-FreeRTOS</name>
<description>Bundle of FreeRTOS for Cortex-M and Cortex-A</description>
<description overview="Overview/README.md">Bundle of FreeRTOS for Cortex-M and Cortex-A</description>
<license>LICENSE</license>
<licenseSets>
<licenseSet id="all" default="true" gating="true">
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Doxygen/gen_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -o pipefail
# Set version of gen pack library
# For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags.
# Use the tag name without the prefix "v", e.g., 0.7.0
REQUIRED_GEN_PACK_LIB="0.11.0"
REQUIRED_GEN_PACK_LIB="0.12.0"

DIRNAME=$(dirname "$(readlink -f "$0")")
GENDIR=../html
Expand Down
23 changes: 23 additions & 0 deletions Overview/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Overview

This CMSIS-Pack contains the [CMSIS-RTOS v2 API](https://arm-software.github.io/CMSIS_6/latest/RTOS2/index.html)
adoption of [FreeRTOS](https://www.freertos.org/) (v11.x).

## CMSIS-Pack contents

```
📦
┣ 📂 CMSIS CMSIS-FreeRTOS related files
┣ 📂 Documentation Pre-built documentation
┣ 📂 Source FreeRTOS Kernel source code
┣ 📂 Overview Contains this README
┣ 📄 ARM.CMSIS-FreeRTOS.pdsc Pack description file
┣ 📄 ARM.CMSIS-FreeRTOS.sha1 Checksums of all the files
┗ 📄 LICENSE Apache 2.0 license file
```

## Links

- [Documentation](https://arm-software.github.io/CMSIS-FreeRTOS/latest/index.html)
- [Repository](https://github.com/ARM-software/CMSIS-FreeRTOS)
- [Issues](https://github.com/ARM-software/CMSIS-FreeRTOS/issues)
3 changes: 2 additions & 1 deletion gen_pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -o pipefail
# Set version of gen pack library
# For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags.
# Use the tag name without the prefix "v", e.g., 0.7.0
REQUIRED_GEN_PACK_LIB="0.11.0"
REQUIRED_GEN_PACK_LIB="0.12.0"

# Set default command line arguments
DEFAULT_ARGS=(-c "v")
Expand All @@ -32,6 +32,7 @@ PACK_DIRS="
CMSIS
Documentation
Source
Overview
"

# Specify file names to be added to pack base directory
Expand Down
Loading