Commit ab26d664 authored by András Wippelhauser's avatar András Wippelhauser
Browse files

SA rework, naming adjustments and fixes in document strings

parent 2a7f6522
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -13,19 +13,19 @@ FROM ETSI-ITS-CDD {
;

/**
 * This DF represents the Parking Information Service (PIM)
 * This DF represents the Parking Information Service
 * and is the top level Protocol Data Unit.
 *
 * @field header: This header contains basic message information
 *
 * @field pimParameters: This field contains the data necessary for PIM
 * @field pimPayload: This field contains the data necessary for ParkingInformationMessage
 *
 * @category:
 * @revision: Created in V2.1.1
*/
PIM ::= SEQUENCE {
ParkingInformationMessage ::= SEQUENCE {
	header          ItsPduHeader (WITH COMPONENTS {... , protocolVersion (2), messageId(21)}),
	pimParameters PimParameters
	pimPayload PimPayload
}

/**
@@ -42,7 +42,7 @@ PIM ::= SEQUENCE {
 * @category:
 * @revision: Created in V2.1.1
*/
PimParameters ::= SEQUENCE {
PimPayload ::= SEQUENCE {
    managementContainer PimManagementContainer,
    detections          ParkingSpaceDetections OPTIONAL,
    arrivalIndication   ParkingSpaceIntentIndication OPTIONAL,
+25 −3
Original line number Diff line number Diff line
@@ -4,16 +4,38 @@ DEFINITIONS AUTOMATIC TAGS ::=

BEGIN

IMPORTS

TrafficParticipantType

FROM ETSI-ITS-CDD {
    itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-4 (4) minor-version-2 (2)
}
;

/**
 * This DF indicates the ApplicationData to be put in the SAMapplicationData field of SA messages.
 *
 * @field requestForSpace: If true, this value indicates that the rider is 
 * @field request: If present, then the sender C-ITS station indicates a request for PIMs from remote ITS stations.
 *
 * @category:
 * @revision: Created in V2.1.1
*/
PimSamApplicationData ::= SEQUENCE {
	request             PIMRequest OPTIONAL,
    ...
}

/**
 * This DF contains data fields elaborating the parking space request.
 *
 * @field vehicleType: This field represents the type of the sender vehicle.
 *
 * @category:
 * @revision: Created in V2.1.1
*/
PIMSAMApplicationData ::= SEQUENCE {
	request             BOOLEAN,
PimRequest ::= SEQUENCE {
    vehicleType         TrafficParticipantType,
    ...
}