#include <nitro/rtc.h>RTCResult RTC_SetAlarmParam(
RTCAlarmChan chan,
const RTCAlarmParam* param );
This function writes alarm interrupt parameter values to the real time clock.
It sends alarm interrupt data to ARM7 and returns the process result once it is received.
This is a synchronous version of RTC_SetAlarmParamAsync.
Do not define parameter values of nonexistent days of the week or times.
Unless the RTC alarm interrupt permission status is "enable," it is not possible to write parameter values to the real time clock, causing any attempted call of this function to fail.
This function requires a PXI interrupt for synchronization. It cannot be used in situations where PXI interrupts are prohibited.
chan |
Uses RTCAlarmChan to specify an alarm channel. |
param |
Pointer to RTCAlarmParam containing parameters to set. |
If the request succeeds, it returns 0.
If the request fails, it returns some numeric value other than 0.
RTC_SetAlarmParamAsync, RTC_GetAlarmParam, RTC_GetAlarmParamAsync, RTCResult, RTCAlarmChan, RTCAlarmParam
05/18/2004 Initial Version