Skip to content
Snippets Groups Projects
Select Git revision
  • v1.4.0
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2353-dropShapeFix
  • Issue/2583-treeBug
  • Hotfix/2562-organizations
  • Issue/2464-invalidateMeta
  • Issue/2484-filterExtracted
  • Issue/2309-docs
  • Issue/2462-removeTraces
  • Hotfix/2459-EncodingPath
  • Hotfix/2452-linkedDeletion
  • Issue/2328-noFailOnLog
  • Issue/1792-newMetadataStructure
  • v2.5.2-Hotfix2365
  • Hotfix/2365-targetClassWorks
  • Issue/2269-niceKpiParser
  • Issue/2295-singleOrganizationFix
  • Issue/1953-owlImports
  • Hotfix/2087-efNet6
  • v2.9.0
  • v2.8.2
  • v2.8.1
  • v2.8.0
  • v2.7.2
  • v2.7.1
  • v2.7.0
  • v2.6.2
  • v2.6.1
  • v2.6.0
  • v2.5.3
  • v2.5.2
  • v2.5.1
  • v2.5.0
  • v2.4.1
  • v2.4.0
  • v2.3.0
  • v2.2.0
  • v2.1.0
  • v2.0.0
41 results

RdfStoreConnector.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    BrickIO.m 1.05 KiB
    classdef BrickIO < MaskedHandle
        % Abstract class definition for brick input output
        %
        % Notes:
        %     * The read/write-methods use uint8-arrays.
        %     * Instances of child-classes of BrickIO represent connection handles. The connection is
        %       opened when creating them and closed when deleting them.
        %
        % Methods:
        %     open: Open the connection to the brick
        %     close: Close the connection to the brick
        %     read: Read data from the brick
        %     write: Write data to the brick
        % 
        
        properties (Abstract)
            % timeOut: time-out period (if 0, no time-out)
            timeOut 
        end
        
        properties (Abstract, Access = protected)
            % handle: Connection handle to the device
            handle
        end
        
        methods (Abstract)
            % Open the brick connection
            open(BrickIO)
            % Close the brick connection
            close(BrickIO)
            % Read data from the brick
            read(BrickIO)
            % Write data to the brick
            write(BrickIO)
        end
    end