char sdSetBlockLength (const unsigned long blocklength)
{

  CS_LOW();
  sdSendCmd(0x50, blocklength, 0xFF);
  if(sdGetResponse()!=0x00);
  CS_HIGH();
  spiSendByte(0xff);
  return MMC_SUCCESS;

}