b.liu | ced8dd0 | 2024-06-28 13:28:29 +0800 | [diff] [blame^] | 1 | /** |
| 2 | * @file |
| 3 | * @author Jinhua Huang <jinhuahuang@asrmicro.com> |
| 4 | * @version 1.0 |
| 5 | * |
| 6 | * @section LICENSE |
| 7 | * Copyright (C) 2021, ASR microelectronics, All rights reserved. |
| 8 | * |
| 9 | * @section DESCRIPTION |
| 10 | * Aboot tiny downloader for Jacana with firmware and pvt |
| 11 | * |
| 12 | */ |
| 13 | #ifndef __JACANA_USLEEP_H__ |
| 14 | #define __JACANA_USLEEP_H__ |
| 15 | |
| 16 | #ifdef __cplusplus |
| 17 | extern "C" { |
| 18 | #endif |
| 19 | |
| 20 | int |
| 21 | jacana_delay_usleep(unsigned long useconds); |
| 22 | |
| 23 | int |
| 24 | jacana_delay_msleep(unsigned long useconds); |
| 25 | |
| 26 | #ifdef __cplusplus |
| 27 | } /* extern "C" */ |
| 28 | #endif |
| 29 | |
| 30 | #endif /* __JACANA_USLEEP__H__ */ |