English
Language : 

ZAURA Datasheet, PDF (37/99 Pages) –
ZAURA RF Wireless Library
Programmer’s Reference Manual
25
ZAURA_RF_GpioConfig
Description The ZAURA RF Wireless Library calls this user-defined function dur-
ing system initialization to configure the Z8F2480 MCU’s GPIO port
pins (as appropriate) for the particular hardware platform being used.
Because the ZAURA RF Wireless Module is a self-contained unit, the
Z8F2480 MCU’s pins, as used by the Module, must never be used or
reconfigured by the application. Refer to the the Z8F2480 MCU
Peripherals section on page 81 to determine which GPIO port pins are
available to the application.
The default implementation of the ZAURA_RF_GpioConfig routine is
contained in the GpioConfig.c file, which is located in the
.\Conf directory of the installation folder.
Syntax
void ZAURA_RF_GpioConfig ( void );
Parameters None.
Returns None.
See Also ZAURA_RF_Init
Example
void
ZAURA_RF_GpioConfig
(
void
)
{
/*
* The Shell Library will reconfigure UART 0 RxD and TxD
* during initialization. If the Shell library is not
* used, PA4 and PA5 may be used by the application.
*/
PAOUT = BIT5;
PADD = BIT4;
PBOUT = 0;
PBDD = 0;
RM006003-1011
ZAURA_RF_GpioConfig