Definition Type: Element
Name: bitflow_regs
Containing Schema: BFML-CL.xsd
MinOccurs 0
MaxOccurs (1)
Abstract
Documentation:
This sections lists registers on the frame grabber that need to be set different than the default. These registers are written after the board is initialized.
Collapse XSD Schema Diagram:
Drilldown into regXSD Diagram of bitflow_regs
Collapse XSD Schema Code:
<xs:element name="bitflow_regs" minOccurs="0">
    <xs:annotation>
        <xs:documentation>This sections lists registers on the frame grabber that need to be set different than the default. These registers are written after the board is initialized.</xs:documentation>
    </xs:annotation>
    <xs:complexType mixed="true">
        <xs:sequence minOccurs="0">
            <xs:element name="reg" minOccurs="0" maxOccurs="unbounded">
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="address" type="xs:string" minOccurs="1" maxOccurs="1">
                            <xs:annotation>
                                <xs:documentation>This should be the name (e.g. CL_CHAN_EN) of the register in the frame grabber that you wish to modify.
The "data" field will be written to this is address.
Note that this can also be the word "delay", in which case the "data" field will be a delay in milliseconds.</xs:documentation>
                            </xs:annotation>
                        </xs:element>
                        <xs:element name="data" type="xs:string" minOccurs="1" maxOccurs="1">
                            <xs:annotation>
                                <xs:documentation>This contains the value that will be written to the "address" field above.
If the address field is set to "delay" this this field contains the number of milliseconds to wait.</xs:documentation>
                            </xs:annotation>
                        </xs:element>
                    </xs:sequence>
                    <xs:attribute name="comment" type="xs:string" use="optional" />
                </xs:complexType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
</xs:element>
Collapse Child Elements:
Name Type Min Occurs Max Occurs
reg reg 0 unbounded