arduino-emulator
Loading...
Searching...
No Matches
MillisFake.h
1/*
2 * Copyright (c) 2020 Arduino. All rights reserved.
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6
7#ifndef MILLIS_FAKE_H_
8#define MILLIS_FAKE_H_
9
10/**************************************************************************************
11 * INCLUDE
12 **************************************************************************************/
13
14#include <api/Common.h>
15
16/**************************************************************************************
17 * FUNCTION DECLARATION
18 **************************************************************************************/
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24void millis_autoOn();
25void millis_autoOff();
26void set_millis(unsigned long const val);
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif /* MILLIS_FAKE_H_ */