Navigation bar
  Print document Start Previous page
 56 of 177 
Next page End  

SAE J2735-Draft-Rev15 [issued: 01-30-07]
-
56 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
               <xs:enumeration value="bkLvl 4"/>
               <xs:enumeration value="bkLvl 5"/>
               <xs:enumeration value="bkLvl 6"/>
               <xs:enumeration value="bkLvl 7"/>
               <xs:enumeration value="bkLvl 8"/>
               <xs:enumeration value="bkLvl 9"/>
               <xs:enumeration value="bkLvl 10"/>
               <xs:enumeration value="bkLvl 11"/>
               <xs:enumeration value="bkLvl 12"/>
               <xs:enumeration value="bkLvl 13"/>
               <xs:enumeration value="bkLvl 14"/>
               <xs:enumeration value="maxPressure"/>
            </xs:restriction>
         </xs:simpleType >
      </xs:union>
</xs:simpleType>
Used by: This entry is directly used by the following 2 other data structures in this standard (record type, descriptive name,
ASN.1, and XML name (if present) of each):
DF 
<ASN> <XML>, and
DF 
In addition, this item may be used by data structures in other ITS standards.
7.7 Data Element: DE_BrakeAppliedStatus
Use: A bit string enumerating the status of various brake systems (different wheels) of the vehicle.  Brake applied
status indicates when vehicle braking has occurred.  This may be used by traffic management centers to
determine that an incident or congestion may be present.  It is possible for some vehicles to provide an indication
of how hard the braking action is but at this time only an indication that braking has occurred is used.
ASN.1 Representation:
BrakeAppliedStatus ::= BIT STRING {
   allOff      (0), -- B'0000  The condition All Off 
   leftFront   (1), -- B'0001  Left Front Active
   leftRear    (2), -- B'0010  Left Rear Active
   rightFront  (4), -- B'0100  Right Front Active
   rightRear   (8), -- B'1000  Right Rear Active
   allOn       (15) -- B'1111  The condition All On
   } -- to fit in 4 bits
XML Representation:
<xs:simpleType name="BrakeAppliedStatus-item" >
      <xs:annotation>
         <xs:appinfo>
            allOff (0) -- B&apos;0000  The condition All Off
            leftFront (1) -- B&apos;0001  Left Front Active
            leftRear (2) -- B&apos;0010  Left Rear Active
            rightFront (4) -- B&apos;0100  Right Front Active
            rightRear (8) -- B&apos;1000  Right Rear Active
            allOn (15) -- B&apos;1111  The condition All On
         </xs:appinfo>
         <xs:documentation>       
            to fit in 4 bits
         </xs:documentation>
      </xs:annotation>
      <xs:union>
         <xs:simpleType>
            <xs:restriction base="xs:int">
               <xs:minInclusive value="0"/>
               <xs:maxInclusive value="15"/>
            </xs:restriction>