From 5ae9e09667778fac9ded20715db406aa04dbc260 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Mon, 19 Jun 2023 22:43:42 +0200 Subject: [PATCH] Fixed no test crate error --- rp2040/Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rp2040/Cargo.toml b/rp2040/Cargo.toml index fe65580..42dc6fd 100644 --- a/rp2040/Cargo.toml +++ b/rp2040/Cargo.toml @@ -3,8 +3,6 @@ name = "rp2040" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] cortex-m = "0.7.2" waveshare-rp2040-zero = "0.6.0" @@ -47,3 +45,9 @@ disable-intrinsics = ["rp2040-hal/disable-intrinsics"] # This enables ROM functions for f64 math that were not present in the earliest RP2040s rom-v2-intrinsics = ["rp2040-hal/rom-v2-intrinsics"] + +[[bin]] +name = "rp2040" +test = false +bench = false +