mirror of
https://github.com/IcedRooibos/py32f0-template.git
synced 2025-10-28 00:12:05 -07:00
45 lines
1.8 KiB
C
45 lines
1.8 KiB
C
/**
|
|
******************************************************************************
|
|
* @file py32f0xx_hal_msp.c
|
|
* @author MCU Application Team
|
|
* @brief This file provides code for the MSP Initialization
|
|
* and de-Initialization codes.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) Puya Semiconductor Co.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* <h2><center>© Copyright (c) 2016 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
* the "License"; You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "py32f0xx_hal.h"
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
/* Private define ------------------------------------------------------------*/
|
|
/* Private macro -------------------------------------------------------------*/
|
|
/* Private variables ---------------------------------------------------------*/
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
/* External functions --------------------------------------------------------*/
|
|
|
|
/**
|
|
* @brief Configure the Flash prefetch and the Instruction cache,
|
|
* the time base source, NVIC and any required global low level hardware
|
|
* by calling the HAL_MspInit() callback function from HAL_Init()
|
|
*
|
|
*/
|
|
void HAL_MspInit(void)
|
|
{
|
|
}
|
|
|
|
/************************ (C) COPYRIGHT Puya *****END OF FILE******************/
|