mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-04 17:31:10 +08:00
16 lines
205 B
C
16 lines
205 B
C
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int64_t now = 0;
|
|
|
|
int watchdog_set(int ms)
|
|
{
|
|
printf("watchdog_set %d\n", ms);
|
|
return ms;
|
|
}
|
|
|
|
void watchdog_clear(int id)
|
|
{
|
|
printf("watchdog_clear %d\n", id);
|
|
}
|