Hdk7545_Expansionsetpindirection - Psion Teklogix OMNii HDK XT10 User Manual

Table of Contents

Advertisement

Sample Code
DWORD GetPowerMode()
{
Hdk7545_Connector expansionSlot = Hdk7545_Connector_Expansion1;
HANDLE hdkHandle = INVALID_HANDLE_VALUE;
DWORD result = Hdk7545_Open(&hdkHandle, expansionSlot);
if( result != ERROR_SUCCESS ) {
}
Hdk7545_PowerMode mode = Hdk7545_PowerMode_Manual;
result = Hdk7545_GetPowerMode(hdkHandle, &mode);
if( result != ERROR_SUCCESS ) {
}
if( mode != Hdk7545_PowerMode_Manual )
{
}
Hdk7545_Close(&hdkHandle);
return ERROR_SUCCESS;
}

4.7.4.8 Hdk7545_ExpansionSetPinDirection

Syntax
DWORD Hdk7545_ExpansionSetPinDirection( HANDLE hdk, DWORD pin,
Hdk7545_PinDirection direction );
Parameters
hdk – [in] an open HDK handle.
pin – [in] the ID of the expansion connector pin. The pin parameter must be set to one of the
HDK7545_GPIO_PIN_EXPANSION_xxx values.
direction – [in] the new pin direction (input/output).
Description
Sets the specified pin on the expansion connector to be either an input or an output.
Expansion connector pins can be configured for use as a GPIO interface, or they can be reassigned
to an alternate function (serial or SPI) using the Hdk7545_ExpansionSetPinFunction function (see
page 46). The pin direction does not need to be set if the alternate (non-GPIO) function for the pin
is enabled.
Drivers and/or applications must set the pin direction to output before calling the
Hdk7545_ExpansionSetPinState function.
return ERROR_NOT_SUPPORTED;
Hdk7545_Close(&hdkHandle);
return ERROR_GEN_FAILURE;
result = Hdk7545_SetPowerMode(hdkHandle, Hdk7545_PowerMode_Manual);
if( result != ERROR_SUCCESS ) {
Hdk7545_Close(&hdkHandle);
return ERROR_GEN_FAILURE;
}
Chapter 4: Software
Omnii HDK API Functions
Psion Teklogix Omnii HDK User Manual
41

Advertisement

Table of Contents
loading

Table of Contents