Ejemplo n.º 1
0
bool InitFS()
{
	InitializeNandCrypto();
	int res = 1;
	if(f_mount(&fs[0], "0:", 0) != FR_OK) res = 0;
	if(f_mount(&fs[1], "1:", 0) != FR_OK) res = 0;
	if(f_mount(&fs[2], "2:", 0) != FR_OK);
	return res;
}
Ejemplo n.º 2
0
Archivo: fs.c Proyecto: LITTOMA/rxTools
bool InitFS()
{
	InitializeNandCrypto();
	return f_mount(&fs, "0:", 0) == FR_OK;
}