From d496c1b47a62846703277a36d073c601511bb501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Sat, 24 Dec 2022 12:02:38 +0100 Subject: [PATCH] feat: add avr-device lib --- Cargo.lock | 1 + Cargo.toml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index c2a8cf8..01fb1a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,6 +77,7 @@ name = "guess-the-number" version = "0.1.0" dependencies = [ "atmega-hal", + "avr-device", "avr-hal-generic", "nb 0.1.3", "panic-halt", diff --git a/Cargo.toml b/Cargo.toml index 8029e06..ee5e7f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,10 @@ panic-halt = "0.2.0" ufmt = "0.1.0" nb = "0.1.2" +[dependencies.avr-device] +path = "../avr-device" +features = ["rt","atmega8"] + [dependencies.atmega-hal] path = "../avr-hal/mcu/atmega-hal" features = ["rt","atmega8"] -- 2.48.1