From b8b24b14e9b766d7a2edbd67071b4c12054ee33d Mon Sep 17 00:00:00 2001 From: Fredrik Bagge Carlson <cont-frb@ulund.org> Date: Tue, 29 Aug 2017 09:34:36 +0200 Subject: [PATCH] Require LabConnection --- README.md | 2 +- src/LabProcesses.jl | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c7cf18..fd1278a 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Usage is demonstrated below, which is a simplified implementation of the block diagram above (transfer function- and signal names corresponds to the figure). First two `SysFilter` objects are created, these objects can now be used as functions of an input, and return the filtered output. The `SysFilter` type takes -care of updating remembering the state of the system when called. +care of updating and remembering the state of the system when called. ```julia G1f = SysFilter(G1) G4f = SysFilter(G4) diff --git a/src/LabProcesses.jl b/src/LabProcesses.jl index 9eb3ff6..fe1fd44 100644 --- a/src/LabProcesses.jl +++ b/src/LabProcesses.jl @@ -1,4 +1,9 @@ # __precompile__() +installed_packages = Pkg.installed() +if "LabConnection" ∉ keys(installed_packages) + Pkg.clone("https://gitlab.control.lth.se/labdev/LabConnection.jl") +end + module LabProcesses -- GitLab