You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
327 B
14 lines
327 B
6 years ago
|
/*
|
||
|
* 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__
|
||
|
bool sdram_init();
|
||
|
bool sdram_test();
|
||
|
#endif // __SDRAM_H__
|