2018-07-10 03:30:27 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the OpenMV project.
|
|
|
|
* Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com>
|
|
|
|
* This work is licensed under the MIT license, see the file LICENSE for details.
|
|
|
|
*
|
|
|
|
* SDRAM Driver.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef __SDRAM_H__
|
|
|
|
#define __SDRAM_H__
|
2018-07-17 17:13:49 -04:00
|
|
|
bool sdram_init(void);
|
|
|
|
void *sdram_start(void);
|
|
|
|
void *sdram_end(void);
|
|
|
|
bool sdram_test(bool fast);
|
2018-07-10 03:30:27 -04:00
|
|
|
#endif // __SDRAM_H__
|