rename to thermostat
This commit is contained in:
parent
59ad66ace4
commit
27d5684782
|
@ -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)",
|
||||
|
|
12
Cargo.toml
12
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 <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"
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue