A36 PCB1.1 软件工程整理

This commit is contained in:
2024-04-17 19:45:26 +08:00
commit 3401b91efc
3896 changed files with 4032291 additions and 0 deletions

View File

@ -0,0 +1,40 @@
/*
******************************************************************************
* @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__