Files
alire-index-community/index/li/light_tasking_stm32f0xx/light_tasking_stm32f0xx-15.4.0.toml
T
2026-05-11 12:34:46 +02:00

116 lines
4.5 KiB
TOML

name = "light_tasking_stm32f0xx"
description = "light-tasking runtime for the STM32F0XX SoC"
version = "15.4.0"
long-description = """
## Usage
First edit your `alire.toml` file and add the following elements:
- Add `light_tasking_stm32f0xx` in the dependency list:
```toml
[[depends-on]]
light_tasking_stm32f0xx = "*"
```
- if applicable, apply any runtime configuration variables (see below).
Then edit your project file to add the following elements:
- "with" the run-time project files. With this, gprbuild will compile the run-time before your application
```ada
with "runtime_build.gpr";
with "ravenscar_build.gpr";
```
- Specify the `Target` and `Runtime` attributes:
```ada
for Target use runtime_build'Target;
for Runtime ("Ada") use runtime_build'Runtime ("Ada");
```
- specify the `Linker` switches:
```ada
package Linker is
for Switches ("Ada") use Runtime_Build.Linker_Switches;
end Linker;
```
The runtime is configurable via Alire crate configuration variables.
See the project website for full details of the available options.
By default, the runtime is configured for the STM32F072RB. If your board has
a different MCU, then you will need to specify which MCU you are using via
the crate configuration. For example, to configure the runtime for the
STM32F030F4, add the following to your `alire.toml`:
```toml
[configuration.values]
light_tasking_stm32f0xx.MCU_Sub_Family = "F030"
light_tasking_stm32f0xx.MCU_Pin_Count = "F"
light_tasking_stm32f0xx.MCU_User_Code_Memory_Size = "4"
```
By default, the runtime configures the clock tree for a 48 MHz system clock
from the high-speed internal (HSI) oscillator. If you want a different clock
configuration, then use the crate configuration variables to specify the
configuration you wish to use. For example, to configure the runtime to
generate a 32 MHz system clock from a 16 MHz HSE crystal oscillator:
```toml
[configuration.values]
# Configure a 16 MHz HSE crystal oscillator
light_tasking_stm32f0xx.HSE_Clock_Frequency = 16000000
light_tasking_stm32f0xx.HSE_Bypass = false
# Use the PLL as the SYSCLK source
light_tasking_stm32f0xx.SYSCLK_Src = "PLL"
# Configure the PLL input for a 16 MHz input from the HSE
light_tasking_stm32f0xx.PLL_Src = "HSE_PREDIV"
light_tasking_stm32f0xx.PREDIV = 1
# Configure the PLL to output 32 MHz (16 MHz * 2)
light_tasking_stm32f0xx.PLLMUL = 2
# Configure the AHB an APB to also run at 32 MHz
light_tasking_stm32f0xx.AHB_Pre = "DIV1"
light_tasking_stm32f0xx.APB_Pre = "DIV1"
```
"""
authors = ["AdaCore", "Daniel King"]
maintainers = ["Daniel King <damaki.gh@gmail.com>"]
maintainers-logins = ["damaki"]
licenses = "GPL-3.0-or-later WITH GCC-exception-3.1"
tags = ["embedded", "runtime", "stm32f0"]
website = "https://github.com/damaki/community-bb-runtimes"
project-files = ['runtime_build.gpr', 'ravenscar_build.gpr']
[configuration]
generate_c = false
output_dir = "gnat_user"
[configuration.variables]
MCU_Sub_Family = { type = "Enum", values = ["F030", "F031", "F038", "F042", "F048", "F051", "F058", "F070", "F071", "F072", "F078", "F091", "F098"], default = "F072" }
MCU_Pin_Count = { type = "Enum", values = ["C", "E", "F", "G", "K", "R", "V"], default = "R" }
MCU_User_Code_Memory_Size = { type = "String", default = "B" }
LSI_Enabled = { type = "Boolean", default = true }
HSE_Bypass = { type = "Boolean", default = false }
HSE_Clock_Frequency = { type = "Integer", first = 1, last = 32000000, default = 8000000 }
SYSCLK_Src = { type = "Enum", values = ["HSI", "HSE", "PLL", "HSI48"], default = "PLL" }
PLL_Src = { type = "Enum", values = ["HSI_2", "HSI_PREDIV", "HSE_PREDIV", "HSI48_PREDIV"], default = "HSI_2"}
PREDIV = { type = "Integer", first = 1, last = 16, default = 2 }
PLLMUL = { type = "Integer", first = 2, last = 16, default = 12 }
AHB_Pre = { type = "Enum", values = ["DIV1", "DIV2", "DIV4", "DIV8", "DIV16", "DIV64", "DIV128", "DIV256", "DIV512"], default = "DIV1" }
APB_Pre = { type = "Enum", values = ["DIV1", "DIV2", "DIV4", "DIV8", "DIV16"], default = "DIV2" }
Interrupt_Stack_Size = { type = "Integer", first = 1, default = 1024 }
Interrupt_Secondary_Stack_Size = { type = "Integer", first = 1, default = 128 }
[[depends-on]]
gnat_arm_elf = "^15"
[origin]
hashes = [
"sha256:c2d0863b52d4e03acf7a0e0931925506a45719e286428db212ee62a05d4e0bd8",
"sha512:665bae42bc93dbba63cacc65a45dd522c0f9c4e9ca9aaab9c1037e92fa16510df7c66604ad93c7f2203d0a950ddf00b688705c4024b65c75a794fe716420e56c",
]
url = "https://github.com/damaki/community-bb-runtimes/releases/download/v15.4.0/light-tasking-stm32f0xx-15.4.0.tar.gz"