User`s manual

Rev.1.00 May 22 2012
REJ09B0566
4-29
Library Reference
R_IO_PORT_Write
4
4.2.3 34BI/O Port
Program example
#include "r_pdl_io_port.h"
void func( void )
{
Uint16_t data;
/* Write 0xFF01 to value of port E */
R_IO_PORT_Write(PDL_IO_PORT_E, 0xFF01);
/* Write 1 to the Port Pin D3 */
R_IO_PORT_Write(PDL_IO_PORT_D_2, 0x1);
}