mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-01 04:11:14 +08:00
27 lines
484 B
C
27 lines
484 B
C
/*
|
|
* Copyright (c) 2021-2024 RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-06-02 supperthomas first version
|
|
* 2024-12-08 wumingzi support rt_hw_us_delay
|
|
*/
|
|
|
|
#ifndef __BOARD_H__
|
|
#define __BOARD_H__
|
|
|
|
#include <rtconfig.h>
|
|
#include "rttypes.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void rt_hw_board_init(void);
|
|
void rt_hw_us_delay(rt_uint32_t us);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |