source: umon/ports/beagleboneblack/am335x_mmc.h

Last change on this file was d8325a1, checked in by Jarielle Catbagan <jcatbagan93@…>, on 08/04/15 at 18:03:25

BBB: Add am335x_mmc.c and am335x_mmc.h that implement "mmc" command with initialization functionality

  • Property mode set to 100644
File size: 470 bytes
Line 
1/*
2 * Copyright (c) 2015 Jarielle Catbagan <jcatbagan93@gmail.com>
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.apache.org/licenses/LICENSE-2.0
7 */
8
9int mmc(int argc, char *argv[]);
10int mmcInit(int interface, int verbose);
11int mmcRead(int interface, char *buf, int blknum, int blkcnt);
12int mmcWrite(int interface, char *buf, int blknum, int blkcnt);
13int mmcInstalled(int interface);
Note: See TracBrowser for help on using the repository browser.