aes70
Version:
A controller library for the AES70 protocol.
94 lines (77 loc) • 1.34 kB
TypeScript
/*
* This file has been generated.
*/
/**
* Bitset to indicate which method parameters contain valid data. The position
* of a bit in the bitset shall correspond to the ordinal position of the
* respective parameter of the method in question.
* @enum {number}
* @readonly
*/
export declare const OcaParameterMask: {
/**
* Entry with value ``1``.
*/
Par1: number;
/**
* Entry with value ``2``.
*/
Par2: number;
/**
* Entry with value ``4``.
*/
Par3: number;
/**
* Entry with value ``8``.
*/
Par4: number;
/**
* Entry with value ``16``.
*/
Par5: number;
/**
* Entry with value ``32``.
*/
Par6: number;
/**
* Entry with value ``64``.
*/
Par7: number;
/**
* Entry with value ``128``.
*/
Par8: number;
/**
* Entry with value ``256``.
*/
Par9: number;
/**
* Entry with value ``512``.
*/
Par10: number;
/**
* Entry with value ``1024``.
*/
Par11: number;
/**
* Entry with value ``2048``.
*/
Par12: number;
/**
* Entry with value ``4096``.
*/
Par13: number;
/**
* Entry with value ``8192``.
*/
Par14: number;
/**
* Entry with value ``16384``.
*/
Par15: number;
/**
* Entry with value ``32768``.
*/
Par16: number;
};
export declare type IOcaParameterMask = number;