Other Parts Discussed in Thread: C2000WARE
Hi,
Is there a way to increase the writing speed of the SD card?
<Setting excerpt>
SpicRegs.SPIBRR.all = 1;
SpicRegs.SPICCR.bit.HS_MODE = 0x00;
// SysTickHandler --This is the handler for this SysTick interrupt. FatFs requires a timer tick every 10 ms for internal timing purposes.
__interrupt void
SysTickHandler (void)
{
// //
// Call the FatFs tick timer.
// //
disk_timerproc ();
PieCtrlRegs.PIEACK.all | = 1;
}
Is it possible for SysTick to be faster than 10ms?
[Reference sample]
C: \ ti \ c2000 \ C2000Ware_3_02_00_00 \ device_support \ f2837xd \ examples \ cpu1 \ sd_card
Thanks in advance.