diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-10-14 18:12:58 -0400 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2019-10-14 18:12:58 -0400 |
| commit | 615ec7f74d6f2a953de01b83979393af60aee804 (patch) | |
| tree | 15be91acea3ae22ddb596e0d9db8a03c0031e37e /ports/cxd56/tick.h | |
| parent | 995a37f0cc4dbc84a6852876a40aee94a8ab6fb2 (diff) | |
| parent | 5971794e5464d166379278c8dcbda0ebb3cc23d5 (diff) | |
merge from upstream
Diffstat (limited to 'ports/cxd56/tick.h')
| -rw-r--r-- | ports/cxd56/tick.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ports/cxd56/tick.h b/ports/cxd56/tick.h new file mode 100644 index 000000000..a0d9ee526 --- /dev/null +++ b/ports/cxd56/tick.h @@ -0,0 +1,34 @@ +/* + * This file is part of the MicroPython project, http://micropython.org/ + * + * The MIT License (MIT) + * + * Copyright 2019 Sony Semiconductor Solutions Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +#ifndef MICROPY_INCLUDED_CXD56_TICK_H +#define MICROPY_INCLUDED_CXD56_TICK_H + +#include "py/mpconfig.h" + +extern volatile uint64_t ticks_ms; + +#endif // MICROPY_INCLUDED_CXD56_TICK_H |
