You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TransmissionState ::= ENUMERATED {
neutral (0), -- Neutral
park (1), -- Park
forwardGears (2), -- Forward gears
reverseGears (3), -- Reverse gears
reserved1 (4),
reserved2 (5),
reserved3 (6),
unavailable (7)-- not-equipped or unavailable value,
-- Any related speed is relative to the vehicle reference frame used
}
VehicleEventFlags ::= BIT STRING {
eventHazardLights (0),
eventStopLineViolation (1), -- Intersection Violation
eventABSactivated (2),
eventTractionControlLoss (3),
eventStabilityControlactivated (4),
eventHazardousMaterials (5),
eventReserved1 (6),
eventHardBraking (7),
eventLightsChanged (8),
eventWipersChanged (9),
eventFlatTire (10),
eventDisabledVehicle (11), -- The DisabledVehicle DF may also be sent
eventAirBagDeployment (12)
} (SIZE (13, ...))
ExteriorLights ::= BIT STRING {
-- All lights off is indicated by no bits set
lowBeamHeadlightsOn (0),
highBeamHeadlightsOn (1),
leftTurnSignalOn (2),
rightTurnSignalOn (3),
hazardSignalOn (4),
automaticLightControlOn (5),
daytimeRunningLightsOn (6),
fogLightOn (7),
parkingLightsOn (8)
} (SIZE (9, ...))
END`
run command
./bin/asn1bean-compiler -f VehStatus.asn
error info
line 38:28: expecting R_PAREN, found ','
line 38:34: expecting "END", found ')'
line 40:24: unexpected token: ::=
line 53:1: expecting "DEFINITIONS", found 'null'
Generating classes for module "VehStatus"
Generating classes for module "ExteriorLights"
done
The text was updated successfully, but these errors were encountered:
`VehStatus DEFINITIONS AUTOMATIC TAGS ::= BEGIN
-- imports and exports
EXPORTS TransmissionState, VehicleEventFlags, ExteriorLights;
IMPORTS ;
END`
run command
./bin/asn1bean-compiler -f VehStatus.asn
error info
line 38:28: expecting R_PAREN, found ','
line 38:34: expecting "END", found ')'
line 40:24: unexpected token: ::=
line 53:1: expecting "DEFINITIONS", found 'null'
Generating classes for module "VehStatus"
Generating classes for module "ExteriorLights"
done
The text was updated successfully, but these errors were encountered: