finga
8b9d21a012
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Start to use the avr-eeprom crate to handle values residing inside the EEPROM.
35 lines
686 B
TOML
35 lines
686 B
TOML
[package]
|
|
name = "clock-generator"
|
|
version = "0.1.0-dev"
|
|
authors = ["finga <finga@onders.org>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[[bin]]
|
|
name = "clock-generator"
|
|
test = false
|
|
bench = false
|
|
|
|
[dependencies]
|
|
panic-halt = "0.2"
|
|
nb = "1.0"
|
|
embedded-hal = "0.2"
|
|
avr-device = { version = "0.3", features = ["atmega328p"] }
|
|
avr-eeprom = { git = "https://git.onders.org/finga/avr-eeprom-rs.git", branch = "main" }
|
|
|
|
[dependencies.atmega-hal]
|
|
git = "https://github.com/rahix/avr-hal"
|
|
branch = "main"
|
|
features = ["atmega328p", "rt"]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
lto = true
|
|
opt-level = "s"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
debug = true
|
|
lto = true
|
|
opt-level = "s"
|