-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lingo.toml
47 lines (39 loc) · 985 Bytes
/
Lingo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "lf-pico-template"
version = "0.1.0"
authors = ["[email protected]"]
description = "Lingua Franca project template for RP2040 bare metal target platform"
[properties]
# shared properties
# platform = "RP2040"
threading = false
# HelloPico
# Periodically write "Hello, World! to specified stdout
[[app]]
name = "HelloPico"
target = "C"
platform = "RP2040"
main_reactor = "src/HelloPico.lf"
dependencies = {}
[app.properties]
# platform = { name = "RP2040", board = "pico:usb" }
# Blink
# Periodically blink onboard LED and toggle GPIO
[[app]]
name = "Blink"
target = "C"
platform = "RP2040"
main_reactor = "src/Blink.lf"
dependencies = {}
[app.properties]
# platform = { name = "RP2040", board = "pico:usb" }
# Timer
# Periodically print logical and physical time with measured lag
[[app]]
name = "Timer"
target = "C"
platform = "RP2040"
main_reactor = "src/Timer.lf"
dependencies = {}
[app.properties]
# platform = { name = "RP2040", board = "pico:usb" }