Subversion Repositories NaviCtrl

Compare Revisions

Ignore whitespace Rev 835 → Rev 836

/trunk/fat16.c
59,6 → 59,7
#include "timer1.h"
#include "fat16.h"
#include "sdc.h"
#include "ssc.h"
#include "uart1.h"
#include "main.h"
#include "logging.h"
675,7 → 676,9
// try to initialize the sd-card.
if(SD_SUCCESS != SDC_Init(1))
{
UART1_PutString("SD-Card could not be initialized.");
if(!SD_SWITCH) UART1_PutString(" -> No SD-Card");
else UART1_PutString("ERROR: SD-Card could not be initialized.");
 
result = 1;
goto end;
}