diff options
| author | George Cosma <[email protected]> | 2024-06-05 13:54:00 +0300 |
|---|---|---|
| committer | George Cosma <[email protected]> | 2024-10-07 09:34:10 +0300 |
| commit | e7e245eeb77974bf1f374f24cbf5c0bc41f745f1 (patch) | |
| tree | c04b67ec1b80ac4fdbfe2276c89520dcd40f1a8f /examples/lpc55s69/Cargo.toml | |
| parent | a23f56b3ddc84a7e87e4b8750df26b91a2cb9637 (diff) | |
feat: embassy-lpc55 hal with gpio and pint driver
Diffstat (limited to 'examples/lpc55s69/Cargo.toml')
| -rw-r--r-- | examples/lpc55s69/Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/lpc55s69/Cargo.toml b/examples/lpc55s69/Cargo.toml new file mode 100644 index 000000000..14ec2d47e --- /dev/null +++ b/examples/lpc55s69/Cargo.toml | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | [package] | ||
| 2 | edition = "2021" | ||
| 3 | name = "embassy-nxp-lpc55s69-examples" | ||
| 4 | version = "0.1.0" | ||
| 5 | license = "MIT OR Apache-2.0" | ||
| 6 | |||
| 7 | |||
| 8 | [dependencies] | ||
| 9 | embassy-nxp = { version = "0.1.0", path = "../../embassy-nxp", features = ["rt"] } | ||
| 10 | embassy-executor = { version = "0.6.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt"] } | ||
| 11 | embassy-sync = { version = "0.6.0", path = "../../embassy-sync", features = ["defmt"] } | ||
| 12 | embassy-time = { version = "0.3.0", path = "../../embassy-time", features = ["defmt"] } | ||
| 13 | panic-halt = "0.2.0" | ||
| 14 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | ||
| 15 | cortex-m-rt = {version = "0.7.0"} | ||
| 16 | defmt = "0.3" | ||
| 17 | defmt-rtt = "0.4" | ||
| 18 | panic-probe = { version = "0.3.2", features = ["print-defmt"] } | ||
| 19 | panic-semihosting = "0.6.0" | ||
| 20 | |||
| 21 | [profile.release] | ||
| 22 | debug = 2 | ||
