Definition Type: Element
Name: cxp_regs_after
Containing Schema: BFML-CXP.xsd
MinOccurs 0
MaxOccurs (1)
Abstract
Documentation:
This section lists registers on the camera that need to be written to camera after re-configuration of the acquisition system. Usually one of these items starts the camera outputting frames.
Collapse XSD Schema Diagram:
Drilldown into regXSD Diagram of cxp_regs_after
Collapse XSD Schema Code:
<xs:element name="cxp_regs_after" minOccurs="0">
    <xs:annotation>
        <xs:documentation>This section lists registers on the camera that need to be written to camera after re-configuration of the acquisition system. Usually one of these items starts the camera outputting frames.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
        <xs:sequence>
            <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 address (in hex) of the register in the camera 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