diff --git a/README.md b/README.md index 3c7cf1805a9c4e7d22d19b32fdab3193f4193acf..fd1278ac68fa2ac91bcf8c0a5234885ce0672b5d 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 9eb3ff6547ba804f14bc9599bd58666ba5b905bb..fe1fd4492ed21c7cb927c0319afd1a5a0fcc111b 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