Chapter 4: Software
Omnii HDK API Functions
Psion Teklogix Omnii HDK User Manual
41
Sample Code
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.
DWORD GetPowerMode()
{
Hdk7545_Connector expansionSlot = Hdk7545_Connector_Expansion1;
HANDLE hdkHandle = INVALID_HANDLE_VALUE;
DWORD result = Hdk7545_Open(&hdkHandle, expansionSlot);
if( result != ERROR_SUCCESS ) {
return ERROR_NOT_SUPPORTED;
}
Hdk7545_PowerMode mode = Hdk7545_PowerMode_Manual;
result = Hdk7545_GetPowerMode(hdkHandle, &mode);
if( result != ERROR_SUCCESS ) {
Hdk7545_Close(&hdkHandle);
return ERROR_GEN_FAILURE;
}
if( mode != Hdk7545_PowerMode_Manual )
{
result = Hdk7545_SetPowerMode(hdkHandle, Hdk7545_PowerMode_Manual);
if( result != ERROR_SUCCESS ) {
Hdk7545_Close(&hdkHandle);
return ERROR_GEN_FAILURE;
}
}
Hdk7545_Close(&hdkHandle);
return ERROR_SUCCESS;
}
Содержание OMNii HDK XT10
Страница 4: ......
Страница 10: ......
Страница 12: ......
Страница 18: ......
Страница 20: ......
Страница 24: ......
Страница 26: ......
Страница 32: ......
Страница 72: ......
Страница 90: ......
Страница 92: ......
Страница 116: ......
Страница 124: ......
Страница 126: ......
Страница 130: ......
Страница 132: ......
Страница 154: ......
Страница 168: ......
Страница 170: ......
Страница 182: ......
Страница 184: ......
Страница 188: ......