26 lines
757 B
C
26 lines
757 B
C
/*
|
|
*********************************************************************************************************
|
|
* IAR Development Kits
|
|
* on the
|
|
*
|
|
* M451
|
|
*
|
|
* Filename : gpio_vcc.h
|
|
* Version : V1.00
|
|
* Programmer(s) : Qian Xianghong
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
#include "type.h"
|
|
|
|
#ifndef USER_GPIO_VCC_PRESENT
|
|
#define USER_GPIO_VCC_PRESENT
|
|
|
|
// SFlash¡¢FRAM¿ª¹Ø
|
|
#define VCC_SFLASH_FRAM_ON() LL_GPIO_ResetOutputPin(GPIOE, LL_GPIO_PIN_11) // µÍµçƽ´ò¿ª
|
|
#define VCC_SFLASH_FRAM_OFF() LL_GPIO_SetOutputPin(GPIOE, LL_GPIO_PIN_11)
|
|
|
|
void Vcc_Init();
|
|
|
|
#endif
|