mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
23 lines
252 B
C
23 lines
252 B
C
#include "wm_hal.h"
|
|
|
|
HAL_StatusTypeDef HAL_Init(void)
|
|
{
|
|
HAL_MspInit();
|
|
return HAL_OK;
|
|
}
|
|
|
|
HAL_StatusTypeDef HAL_DeInit(void)
|
|
{
|
|
return HAL_OK;
|
|
}
|
|
|
|
__attribute__((weak)) void HAL_MspInit(void)
|
|
{
|
|
|
|
}
|
|
|
|
__attribute__((weak)) void HAL_MspDeInit(void)
|
|
{
|
|
|
|
}
|