From 9ac35cbdce2d8f9fae0534b5d4599b774e612dac Mon Sep 17 00:00:00 2001 From: watts Date: Mon, 17 Oct 2022 15:48:42 +0200 Subject: [PATCH] Create Config_PixelClock --- Config_PixelClock.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Config_PixelClock.md diff --git a/Config_PixelClock.md b/Config_PixelClock.md new file mode 100644 index 0000000..e18703e --- /dev/null +++ b/Config_PixelClock.md @@ -0,0 +1,30 @@ +# Pixel Clock +This file contains the pixel clock settings. It can have multiple pixel clock definitions, but only one of them can be active. The key of each pixel clock definition is the name of that pixel clock. + +See source:trunk/PixelatorController/config/pixelClock.json for an example. + + **active**::
+ Integer value 1 activates this pixel clock.
+ **Default**: 0 + + **devicePath**::
+ String value defines the comedi device path.
+ **Default**: "" (empty string) + + **maxCounters**::
+ Integer value defines the maximal number of subdevices.
+ **Default***: 0 + + **noHardware**::
+ Boolean value. Set to true to use PixelatorController without hardware.
+ **Default**: false + + **waitUntilDoneInterval**::
+ Double value defines the interval (in seconds) used in waitUntilDone(). + running() is called in this interval until it returns false or + until waitUntilDoneTimeout is exceeded.
+ **Default***: 0.005 + + **waitUntilDoneTimeout**::
+ Double value defines the timeout (in seconds) used in waitUntilDone(). running() is called until it returns false or until waitUntilDoneTimeout is exceeded.
+ **Default**: 10.0 \ No newline at end of file