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__ */
|