Changeset 656 for trunk/user/display


Ignore:
Timestamp:
Dec 6, 2019, 12:07:51 PM (4 years ago)
Author:
alain
Message:

Fix several bugs in the FATFS and in the VFS,
related to the creation of big files requiring
more than 4 Kbytes (one cluster) on device.

Location:
trunk/user/display
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/user/display/Makefile

    r644 r656  
    2222build/display.elf : $(OBJS) display.ld
    2323        $(LD) -o $@ -T display.ld $(OBJS) -L$(LIBC) -L$(LIBPTHREAD) -L$(LIBALMOSMKH) \
    24          -lc -lpthread -lalmosmkh -lpthread -lc
     24          -lc -lpthread -lalmosmkh -lpthread -lc
    2525        $(DU) -D $@ > $@.txt
    2626
     
    3535
    3636.PHONY: dirs clean
    37 
     37 
  • trunk/user/display/display.c

    r644 r656  
    5656    }
    5757}       
    58 ////////////
    59 void main()
     58////////////////
     59int main( void )
    6060{
    6161
     
    141141   
    142142    exit(0);
     143
     144    return 0;
    143145}
Note: See TracChangeset for help on using the changeset viewer.