mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 01:43:32 +08:00
18 lines
362 B
C
18 lines
362 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2021-08-14 Jonas first version
|
|
*/
|
|
|
|
#ifndef __HK32_MSP_H__
|
|
#define __HK32_MSP_H__
|
|
|
|
void hk32_msp_usart_init(void *Instance);
|
|
void hk32_msp_spi_init(void *Instance);
|
|
|
|
#endif /* __HK32_MSP_H__ */
|