26 lines
762 B
C
26 lines
762 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<73><68>FRAM<41><4D><EFBFBD><EFBFBD> apex
|
|||
|
|
#define VCC_SFLASH_FRAM_ON() LL_GPIO_SetOutputPin(GPIOE, LL_GPIO_PIN_11) // <20>͵<EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD><EFBFBD>
|
|||
|
|
#define VCC_SFLASH_FRAM_OFF() LL_GPIO_ResetOutputPin(GPIOE, LL_GPIO_PIN_11)
|
|||
|
|
|
|||
|
|
void Vcc_Init();
|
|||
|
|
|
|||
|
|
#endif
|