From 27d56847827d8d227ac5ea8aaf2acde1d89a4bda Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 1 Jun 2019 10:14:32 +0800 Subject: [PATCH] rename to thermostat --- Cargo.lock | 2 +- Cargo.toml | 12 ++++-------- src/main.rs | 2 +- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c5221d3..2c4d835 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,7 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. [[package]] -name = "adc2tcp" +name = "thermostat" version = "0.0.0" dependencies = [ "bare-metal 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 39392c4..4378e8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,18 +1,14 @@ [package] categories = ["embedded", "no-std"] -name = "adc2tcp" -description = "Poll ADC pin, report over TCP" +name = "thermostat" +description = "Thermostat firmware" license = "GPL-3.0-only" authors = ["Astro "] version = "0.0.0" -keywords = ["ethernet", "eth", "stm32", "adc", "tcp"] -repository = "https://github.com/m-labs/adc2tcp" +keywords = ["thermostat", "laser", "physics"] +repository = "https://git.m-labs.hk/M-Labs/thermostat" edition = "2018" -[badges] -travis-ci = { repository = "astro/adc2tcp", branch = "master" } -maintenance = { status = "experimental" } - [package.metadata.docs.rs] features = [] default-target = "thumbv7em-none-eabihf" diff --git a/src/main.rs b/src/main.rs index 5d6c39c..3802ab4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -67,7 +67,7 @@ fn init_log() { #[entry] fn main() -> ! { init_log(); - info!("adc2tcp"); + info!("Thermostat firmware"); let mut cp = CorePeripherals::take().unwrap(); cp.SCB.enable_icache();