| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- ## Package Base Information
- name: osp-nsdk_freertos
- owner: nuclei
- version: 11.1.0
- description: FreeRTOS Port Package for Nuclei SDK
- type: osp
- keywords:
- - rtos
- - risc-v
- license: MIT
- homepage: https://freertos.org/
- ## Package Dependency
- dependencies:
- - name: sdk-nuclei_sdk
- version:
- ## Package Configurations
- configuration:
- ## Source Code Management
- codemanage:
- installdir: FreeRTOS
- copyfiles:
- - path: ["Source/*.c", "Source/portable/MemMang/heap_4.c", "Source/include"]
- - path: ["Source/portable/port.c", "Source/portable/portmacro.h"]
- - path: ["Source/portable/GCC"]
- incdirs:
- - path: ["Source/include", "Source/portable"]
- libdirs:
- ldlibs:
- ## Build Configuration
- buildconfig:
- - type: common
- common_defines:
- - defines: RTOS_FREERTOS
- - defines: configNUMBER_OF_CORES=${nuclei_smp}
- condition: $( ${nuclei_smp} > 1 )
|