You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
299 B
15 lines
299 B
/*
|
|
* Copyright (c) 2015-2017, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef MICRO_DELAY_H
|
|
#define MICRO_DELAY_H
|
|
|
|
#ifndef __ASSEMBLER__
|
|
#include <stdint.h>
|
|
void rcar_micro_delay(uint64_t micro_sec);
|
|
#endif
|
|
|
|
#endif /* MICRO_DELAY_H */
|
|
|