From 7a3b4b98fed5d891593a283227320e08398047a8 Mon Sep 17 00:00:00 2001 From: Michiel Cottaar <michiel.cottaar@ndcn.ox.ac.uk> Date: Wed, 14 Feb 2024 17:32:35 +0000 Subject: [PATCH] Make single readout a component --- src/components/readouts/single_readouts.jl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/readouts/single_readouts.jl b/src/components/readouts/single_readouts.jl index ee97eed..ee72037 100644 --- a/src/components/readouts/single_readouts.jl +++ b/src/components/readouts/single_readouts.jl @@ -1,6 +1,7 @@ -module InstantReadouts +module SingleReadouts +import JuMP: @constraint import ...AbstractTypes: ReadoutComponent -import ...Variables: variables, duration, effective_time, make_generic +import ....Variables: duration, effective_time, make_generic import ..ADCs: ADC """ @@ -8,7 +9,7 @@ import ..ADCs: ADC Represents an instantaneous `Readout` of the signal. -It has no parameters or properties to set. +It has no parameters or variables to set. """ struct SingleReadout <: ReadoutComponent end -- GitLab