rename to thermostat

softspi
Sebastien Bourdeauducq 2019-06-01 10:14:32 +08:00
parent 59ad66ace4
commit 27d5684782
3 changed files with 6 additions and 10 deletions

2
Cargo.lock generated
View File

@ -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)",

View File

@ -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 <astro@spaceboyz.net>"]
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"

View File

@ -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();