Motorola SYMBOL MINISCAN MSXX04 Guía de usuario Pagina 224

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 278
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 223
Chapter 19: Wireless Wide-Area Networking
Controlling the Interaction with the GUI
Psion Mobile Devices Developers Guide
212
Set PIN Access Flag
When the Set PIN access flag is enabled, the PIN cannot be entered through the GUI.
If this flag is set during driver initialization, then the user interface does not prompt the user for a PIN or a
PUK. The initialization progress status remains at Initializing modem until the application that set the flag
handles the PIN initialization.
Set Provisioned Contexts Access Flag
If this flag is set during driver initialization, the user interface is not used to set up the data configuration
profile for the driver. As a result, even though the status is shown as Ready to connect, the [CONNECT
DATA] button is not available. The application that set this flag is responsible for setting up the data
configuration before establishing a packet data connection through RAS.
Set Suppress Call Notifications Access Flag
When this flag is set, the WWAN GUI program does not notify the user of the computer when there is an
incoming call. When this flag is not set, the WWAN program always notifies the user of incoming calls—see
the user manual for your computer for further details.
This flag works with version 1.10047 and later of the WWANUI GUI program, accessed through the Wireless
Manager applet.
19.8.1 Controlling the Interaction with the GUI
The following code samples show how the access flags are manipulated using the Mobile Devices SDK. The
process is as follows:
1. Save the current access flag settings
2. Change the access flag settings
19.9 RSSI (Received Signal Strength Indicator)
The RSSI status of the radio changes continuously, due to various environmental factors. There is no get
function for RSSI in the Mobile Devices SDK. The signal strength can only be obtained by registering a call-
DWORD currentAccessFlags = 0;
WirelessWAN::GetCurrentAccessFlags(currentAccessFlags);
currentAccessFlags |= AccessFlags_SuppressCallNotifications;
WirelessWAN::SetCurrentAccessFlags(currentAccessFlags);
AccessFlags accessFlags = 0;
if (WirelessWAN.GetCurrentAccessFlags(ref accessFlags) == WwanRequestStatus.Success)
{
accessFlags |= AccessFlags.SuppressCallNotifications;
if (WirelessWAN.SetCurrentAccessFlags(accessFlags) != WwanRequestStatus.Success)
{
// Failure!
}
}
Warning: Before the application closes, control of the access flags must be returned to the
WWAN GUI program.
// Re-enable the Control Panel notifications:
DWORD currentAccessFlags = 0;
WirelessWAN::GetCurrentAccessFlags(currentAccessFlags);
currentAccessFlags &= ~AccessFlags_SuppressCallNotifications;
WirelessWAN::SetCurrentAccessFlags(currentAccessFlags);
Vista de pagina 223
1 2 ... 219 220 221 222 223 224 225 226 227 228 229 ... 277 278

Comentarios a estos manuales

Sin comentarios