Compare commits

..

No commits in common. "4ce35dfd0d36ca8fb190fe5f8d96e6096b32be37" and "263ccf3210bceda7510b6fdc42e095adba7d03bb" have entirely different histories.

4 changed files with 2 additions and 24 deletions

View File

@ -1,5 +1,5 @@
[package]
name = "lj_rust"
name = "lazer"
version = "0.1.0"
edition = "2021"

View File

@ -1,20 +1,6 @@
# file: Settings.toml
# Rename me !
# The main key of your laser in LJ
laser_id = 0
# Activate for more debug
debug = "true"
# Redis URL as IP:port
redis_url = "127.0.0.1"
# Either Helios or Etherdream
dac_family = "Helios"
# For Helios. USB Device Id of the DAC
dac_id = 0
# For Etherdream. IP of the DAC
dac_id = 1
dac_url = "192.168.1.68"

View File

@ -1,2 +0,0 @@
pub mod conf;
pub mod redis_ctrl;

View File

@ -1,6 +0,0 @@
use lj_rust::conf;
#[test]
fn it_adds_two() {
assert_eq!(4, 4);
}