41 lines
986 B
C
41 lines
986 B
C
/*
|
|
******************************************************************************
|
|
* @file driver_psram.h
|
|
* @author FreqChip Firmware Team
|
|
* @version V1.0.0
|
|
* @date 2022
|
|
* @brief Header file of PSRAM module.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2022 FreqChip.
|
|
* All rights reserved.
|
|
******************************************************************************
|
|
*/
|
|
#ifndef __DRIVER_PSRAM_H__
|
|
#define __DRIVER_PSRAM_H__
|
|
|
|
#include "fr30xx.h"
|
|
|
|
/*
|
|
* @brief PSRAM Init structure definition
|
|
*/
|
|
typedef struct
|
|
{
|
|
uint32_t Reserve; /*!< reserve */
|
|
} PSRAM_InitTypeDef;
|
|
|
|
/* ################################ Initialization、Config Section END ################################## */
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
/* Exported functions --------------------------------------------------------*/
|
|
|
|
void psram_init(bool reset);
|
|
|
|
uint32_t psram_read_id(void);
|
|
|
|
#endif // __DRIVER_PSRAM_H__
|