 | C166 User's Guide |  |
|
|
| _srvwdt_| Summary |
#include <intrins.h>
void _srvwdt_ (void);
| | Description | The _srvwdt_ routine inserts a SRVWDT instruction (which services the watchdog timer) into the program. This routine is implemented as an intrinsic function. The code is generated inline rather than being called. | | Return Value | None. | | See Also | _diswdt_ | | Example |
#include <intrins.h>
int i;
void test_srvwdt (void) {
i = 1;
_srvwdt_(); /* service watchdog timer */
i = 0;
}
|
|
|