Ignore:
Timestamp:
May 16, 2013, 3:01:37 PM (11 years ago)
Author:
cfuguet
Message:

Modifications in tsar/trunk/softs/tsar_boot:

  • Improving the boot_ioc_read when using a SD card in FPGA platform.
  • Adding some instrumentation on the SD card driver (under preprocessor conditional directives).
  • Including Doxyfile for generate documentation using doxygen.
  • Improving the Makefile to include doc generation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/tsar_boot/src/sdcard.c

    r292 r388  
    4343static void _sdcard_gen_tick(struct sdcard_dev * sdcard, unsigned int tick_count)
    4444{
    45     volatile register int i = 0;
     45    register int i = 0;
    4646    while(i++ < tick_count) spi_put_tx(sdcard->spi, 0xFF, 0);
    4747}
     
    213213
    214214    for (i = 0; i < 4; i++)
     215    {
    215216        args[i] = (sdcard->access_pointer >> (32 - (i+1)*8)) & 0xFF;
     217    }
    216218
    217219    _sdcard_enable(sdcard);
Note: See TracChangeset for help on using the changeset viewer.