Enablepulsewidthmeasurementmode – Renesas M16C/62P Group User Manual

Page 64

Advertising
background image

Rev.1.00 2007.11.1
REC10B0002-0100

62

__EnablePulseWidthMeasurementMode

Synopsis

<Control operation of pulse width measurement mode>

Boolean __EnablePulseWidthMeasurementMode(unsigned long data)

data Setup

data

Description

Controls operation of the timer that is set to specified pulse width measurement mode.

[data]

For data, the following definition values can be set. To set multiple definition values at

the same time, use the symbol “|” to separate each specified value.

RAPI_TIMER_B0

Selects timer B channel 0.

RAPI_TIMER_B1

Selects timer B channel 1.

RAPI_TIMER_B2

Selects timer B channel 2.

RAPI_TIMER_B3

Selects timer B channel 3.

RAPI_TIMER_B4

Selects timer B channel 4.

RAPI_TIMER_B5

Selects timer B channel 5.

RAPI_TIMER_ON

Sets the timer that is set to pulse width measurement mode to start

operating.

RAPI_TIMER_OFF

Sets the timer that is set to pulse width measurement mode to stop

operating.

Return value

If the timer specification is incorrect, RAPI_FALSE is returned; otherwise, RAPI_TRUE

is returned.

Functionality

Timer (pulse width measurement mode)

Reference

__CreatePulseWidthMeasurementMode

,

__DestroyPulseWidthMeasurementMode

,

__GetPulseWidthMeasurementMode

Remark

If an undefined value is specified in the argument, operation of the API cannot be

guaranteed.

Program example

#include "rapi_timer_m16c_62p.h"

void func( void )
{
/* Disable timer B5 as pulse width measurement mode */
__EnablePulseWidthMeasurementMode( RAPI_TIMER_B5|RAPI_TIMER_OFF );
}

Advertising