Files
alire-index-community/index/li/light_nrf54l_app/light_nrf54l_app-15.3.0.toml
2026-04-14 15:35:01 +02:00

70 lines
2.4 KiB
TOML

name = "light_nrf54l_app"
description = "light runtime for the nRF54L series"
version = "15.3.0"
long-description = """
## Usage
First edit your `alire.toml` file and add the following elements:
- Add `light_nrf54l_app` in the dependency list:
```toml
[[depends-on]]
light_nrf54l_app = "*"
```
Then edit your project file to add the following elements:
- "with" the run-time project files:
```ada
with "runtime_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 & ("-Wl,--gc-sections");
end Linker;
```
Note that the linker switch `-Wl,--gc-sections` is optional, but its use is
recommended since it reduces the final size of the executable by removing
unused code.
"""
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"]
website = "https://github.com/damaki/community-bb-runtimes"
project-files = ['runtime_build.gpr']
[configuration]
output_dir = "gnat_user"
[configuration.variables]
Device = { type = "Enum", values = ["nRF54L05", "nRF54L10", "nRF54L15", "nRF54LS05A", "nRF54LS05B", "nRF54LV10A", "nRF54LM20A", "nRF54LM20B"], default = "nRF54L15" }
MCU_Domain_Speed = { type = "Enum", values = ["CK64M", "CK128M"], default = "CK64M" }
Time_Base_GRTC_IRQ = { type = "Integer", first = 0, last = 3, default = 3 }
Time_Base_GRTC_CCn = { type = "Integer", first = 0, last = 11, default = 11}
Security_Level = { type = "Enum", values = [ "Secure", "Non_Secure" ], default = "Secure" }
LFCLK_Src = { type = "Enum", values = ["LFXO", "LFRC", "LFSYNT"], default = "LFXO" }
Enable_SWO = { type = "Boolean", default = true }
Enable_Trace = { type = "Boolean", default = false }
Enable_Glitch_Detector = { type = "Boolean", default = true }
[[depends-on]]
gnat_arm_elf = "^15"
[origin]
hashes = [
"sha256:6ad9aa9e64303361cb281aca681597bc3b5346f0e40236c2e63c1fde5d3eb8d1",
"sha512:725e7dbf3571876c0c54bba7fae15aba0a5d38939f150ff550c72d97b6e13c5a898f5fde4e80fc6984a602e47b4ed8327db35204c75a6250344c358c3611c817",
]
url = "https://github.com/damaki/community-bb-runtimes/releases/download/v15.3.0/light-nrf54l_app-15.3.0.tar.gz"