blob: 2e7de60358a55bea45e2f9c3064e5a60011e1b64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Copyright 2017 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.
*/
/* Microchip MEC1701 specific module for Chrome EC */
#ifndef __CROS_EC_CLOCK_CHIP_H
#define __CROS_EC_CLOCK_CHIP_H
#include <stdint.h>
void htimer_init(void);
void system_set_htimer_alarm(uint32_t seconds,
uint32_t microseconds);
#endif /* __CROS_EC_I2C_CLOCK_H */
|