summaryrefslogtreecommitdiff
path: root/cts/gpio/th.c
blob: bdcd4938f712ac0340d8722919b37ca47f558e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright 2016 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "timer.h"
#include "watchdog.h"

void cts_task(void)
{
	while (1) {
		watchdog_reload();
		sleep(1);
	}
}