IOCTL_GNSS_SET_V2UPL_CONFIG IOCTL (gnssdriver.h)

The IOCTL_GNSS_SET_V2UPL_CONFIG control code is used by the GNSS adapter to set configuration for v2 user plane location for CDMA, which consist of the MPC address, and in testing mode, potentially the PDE address.

Major code

IRP_MJ_DEVICE_CONTROL

Input buffer

A pointer to a GNSS_V2UPL_CONFIG structure.

Input buffer length

Set to sizeof(GNSS_V2UPL_CONFIG).

Output buffer

Set to NULL.

Output buffer length

Set to 0.

Status block

Irp->IoStatus.Status is set to STATUS_SUCCESS if the request is successful. Otherwise, Status to the appropriate error condition as a NTSTATUS code.

Remarks

The driver sets one of the following NTSTATUS values to indicate the result.

  • STATUS_SUCCESS, when the driver processes the V2UPL information successfully.
  • Failed, when the driver does not process the V2UPL information successfully.
  • Ignored, when the driver ignores the V2UPL information.

Requirements

Requirement Value
Header gnssdriver.h

See also

Creating IOCTL Requests in Drivers

WdfIoTargetSendInternalIoctlOthersSynchronously

WdfIoTargetSendInternalIoctlSynchronously

WdfIoTargetSendIoctlSynchronously