Add Positioning Activation Response NRPPA message encoding procedures

This commit is contained in:
Rakesh Mundlamuri
2026-01-23 19:09:42 +05:30
parent defafa8d24
commit 192508e6cc
6 changed files with 89 additions and 0 deletions

View File

@@ -36,3 +36,7 @@ MESSAGE_DEF(NRPPA_POSITIONING_ACTIVATION_REQ,
MESSAGE_PRIORITY_MED,
nrppa_positioning_activation_req_t,
nrppa_positioning_activation_req)
MESSAGE_DEF(NRPPA_POSITIONING_ACTIVATION_RESP,
MESSAGE_PRIORITY_MED,
nrppa_positioning_activation_resp_t,
nrppa_positioning_activation_resp)

View File

@@ -29,6 +29,7 @@
#define NRPPA_POSITIONING_INFORMATION_REQ(mSGpTR) (mSGpTR)->ittiMsg.nrppa_positioning_information_req
#define NRPPA_POSITIONING_INFORMATION_RESP(mSGpTR) (mSGpTR)->ittiMsg.nrppa_positioning_information_resp
#define NRPPA_POSITIONING_ACTIVATION_REQ(mSGpTR) (mSGpTR)->ittiMsg.nrppa_positioning_activation_req
#define NRPPA_POSITIONING_ACTIVATION_RESP(mSGpTR) (mSGpTR)->ittiMsg.nrppa_positioning_activation_resp
/* Structure of Positioning related NRPPA messages */
/* IE structures for Positioning related messages as per TS 38.455 V16.7.1*/
@@ -623,4 +624,9 @@ typedef struct nrppa_positioning_activation_req_s {
nrppa_srs_type_t srs_type;
} nrppa_positioning_activation_req_t;
typedef struct nrppa_positioning_activation_resp_s {
// IE 9.2.4 (mandatory)
uint16_t transaction_id;
} nrppa_positioning_activation_resp_t;
#endif // NRPPA_MESSAGES_TYPES_H_