forked from M-Labs/thermostat
rename to thermostat
This commit is contained in:
parent
59ad66ace4
commit
27d5684782
|
@ -1,7 +1,7 @@
|
||||||
# This file is automatically @generated by Cargo.
|
# This file is automatically @generated by Cargo.
|
||||||
# It is not intended for manual editing.
|
# It is not intended for manual editing.
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "adc2tcp"
|
name = "thermostat"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bare-metal 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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]
|
[package]
|
||||||
categories = ["embedded", "no-std"]
|
categories = ["embedded", "no-std"]
|
||||||
name = "adc2tcp"
|
name = "thermostat"
|
||||||
description = "Poll ADC pin, report over TCP"
|
description = "Thermostat firmware"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
authors = ["Astro <astro@spaceboyz.net>"]
|
authors = ["Astro <astro@spaceboyz.net>"]
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
keywords = ["ethernet", "eth", "stm32", "adc", "tcp"]
|
keywords = ["thermostat", "laser", "physics"]
|
||||||
repository = "https://github.com/m-labs/adc2tcp"
|
repository = "https://git.m-labs.hk/M-Labs/thermostat"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[badges]
|
|
||||||
travis-ci = { repository = "astro/adc2tcp", branch = "master" }
|
|
||||||
maintenance = { status = "experimental" }
|
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = []
|
features = []
|
||||||
default-target = "thumbv7em-none-eabihf"
|
default-target = "thumbv7em-none-eabihf"
|
||||||
|
|
|
@ -67,7 +67,7 @@ fn init_log() {
|
||||||
#[entry]
|
#[entry]
|
||||||
fn main() -> ! {
|
fn main() -> ! {
|
||||||
init_log();
|
init_log();
|
||||||
info!("adc2tcp");
|
info!("Thermostat firmware");
|
||||||
|
|
||||||
let mut cp = CorePeripherals::take().unwrap();
|
let mut cp = CorePeripherals::take().unwrap();
|
||||||
cp.SCB.enable_icache();
|
cp.SCB.enable_icache();
|
||||||
|
|
Loading…
Reference in New Issue