Skip to content

Commit

Permalink
Merge pull request #1 from mbedmicro/master
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
PrzemekWirkus committed Aug 14, 2014
2 parents ed05011 + cc0476d commit e4419e7
Show file tree
Hide file tree
Showing 73 changed files with 13,620 additions and 327 deletions.
9 changes: 9 additions & 0 deletions libraries/fs/fat/FATFileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ int FATFileSystem::remove(const char *filename) {
return 0;
}

int FATFileSystem::rename(const char *oldname, const char *newname) {
FRESULT res = f_rename(oldname, newname);
if (res) {
debug_if(FFS_DBG, "f_rename() failed: %d\n", res);
return -1;
}
return 0;
}

int FATFileSystem::format() {
FRESULT res = f_mkfs(_fsid, 0, 512); // Logical drive number, Partitioning rule, Allocation unit size (bytes per cluster)
if (res) {
Expand Down
1 change: 1 addition & 0 deletions libraries/fs/fat/FATFileSystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class FATFileSystem : public FileSystemLike {

virtual FileHandle *open(const char* name, int flags);
virtual int remove(const char *filename);
virtual int rename(const char *oldname, const char *newname);
virtual int format();
virtual DirHandle *opendir(const char *name);
virtual int mkdir(const char *name, mode_t mode);
Expand Down
10 changes: 9 additions & 1 deletion libraries/mbed/common/retarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,15 @@ extern "C" int remove(const char *path) {
}

extern "C" int rename(const char *oldname, const char *newname) {
return -1;
FilePath fpOld(oldname);
FilePath fpNew(newname);
FileSystemLike *fsOld = fpOld.fileSystem();
FileSystemLike *fsNew = fpNew.fileSystem();

/* rename only if both files are on the same FS */
if (fsOld != fsNew || fsOld == NULL) return -1;

return fsOld->rename(fpOld.fileName(), fpNew.fileName());
}

extern "C" char *tmpnam(char *s) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ SECTIONS
KEEP(*(.Vectors))
*(.text*)

*(.init)
*(.fini)
KEEP(*(.init))
KEEP(*(.fini))

/* .ctors */
*crtbegin.o(.ctors)
Expand All @@ -62,7 +62,7 @@ SECTIONS

*(.rodata*)

*(.eh_frame*)
KEEP(*(.eh_frame*))
} > FLASH


Expand All @@ -89,22 +89,22 @@ SECTIONS
. = ALIGN(4);
/* preinit data */
PROVIDE_HIDDEN (__preinit_array_start = .);
*(.preinit_array)
KEEP(*(.preinit_array))
PROVIDE_HIDDEN (__preinit_array_end = .);

. = ALIGN(4);
/* init data */
PROVIDE_HIDDEN (__init_array_start = .);
*(SORT(.init_array.*))
*(.init_array)
KEEP(*(SORT(.init_array.*)))
KEEP(*(.init_array))
PROVIDE_HIDDEN (__init_array_end = .);


. = ALIGN(4);
/* finit data */
PROVIDE_HIDDEN (__fini_array_start = .);
*(SORT(.fini_array.*))
*(.fini_array)
KEEP(*(SORT(.fini_array.*)))
KEEP(*(.fini_array))
PROVIDE_HIDDEN (__fini_array_end = .);

*(.jcr)
Expand Down Expand Up @@ -149,4 +149,3 @@ SECTIONS
/* Check if data + heap + stack exceeds RAM limit */
ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
/* Linker script for mbed LPC1549 */

/* Linker script to configure memory regions. */
MEMORY
{
/* Define each memory region */
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 256K
Ram0_16 (rwx) : ORIGIN = 0x2000000 + 0x100, LENGTH = (16K - 0x100)
Ram1_16 (rwx) : ORIGIN = 0x2004000, LENGTH = 16K
Ram2_4 (rwx) : ORIGIN = 0x2008000, LENGTH = 4K

}

/* Linker script to place sections and symbol values. Should be used together
* with other linker script that defines memory regions FLASH and RAM.
* It references following symbols, which must be defined in code:
* Reset_Handler : Entry of reset handler
*
* It defines following symbols, which code can use without definition:
* __exidx_start
* __exidx_end
* __etext
* __data_start__
* __preinit_array_start
* __preinit_array_end
* __init_array_start
* __init_array_end
* __fini_array_start
* __fini_array_end
* __data_end__
* __bss_start__
* __bss_end__
* __end__
* end
* __HeapLimit
* __StackLimit
* __StackTop
* __stack
*/
ENTRY(Reset_Handler)

SECTIONS
{
.text :
{
KEEP(*(.isr_vector))
*(.text*)

KEEP(*(.init))
KEEP(*(.fini))

/* .ctors */
*crtbegin.o(.ctors)
*crtbegin?.o(.ctors)
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
*(SORT(.ctors.*))
*(.ctors)

/* .dtors */
*crtbegin.o(.dtors)
*crtbegin?.o(.dtors)
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
*(SORT(.dtors.*))
*(.dtors)

*(.rodata*)

KEEP(*(.eh_frame*))
} > FLASH

.ARM.extab :
{
*(.ARM.extab* .gnu.linkonce.armextab.*)
} > FLASH

__exidx_start = .;
.ARM.exidx :
{
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
} > FLASH
__exidx_end = .;

__etext = .;

.data : AT (__etext)
{
__data_start__ = .;
Image$$RW_IRAM1$$Base = .;
*(vtable)
*(.data*)

. = ALIGN(4);
/* preinit data */
PROVIDE (__preinit_array_start = .);
KEEP(*(.preinit_array))
PROVIDE (__preinit_array_end = .);

. = ALIGN(4);
/* init data */
PROVIDE (__init_array_start = .);
KEEP(*(SORT(.init_array.*)))
KEEP(*(.init_array))
PROVIDE (__init_array_end = .);


. = ALIGN(4);
/* finit data */
PROVIDE (__fini_array_start = .);
KEEP(*(SORT(.fini_array.*)))
KEEP(*(.fini_array))
PROVIDE (__fini_array_end = .);

. = ALIGN(4);
/* All data end */
__data_end__ = .;

} > Ram0_16


.bss :
{
__bss_start__ = .;
*(.bss*)
*(COMMON)
__bss_end__ = .;
Image$$RW_IRAM1$$ZI$$Limit = . ;
} > Ram0_16


.heap :
{
__end__ = .;
end = __end__;
*(.heap*)
__HeapLimit = .;
} > Ram0_16

/* .stack_dummy section doesn't contains any symbols. It is only
* used for linker to calculate size of stack sections, and assign
* values to stack symbols later */
.stack_dummy :
{
*(.stack)
} > Ram0_16

/* Set stack top to end of RAM, and stack limit move down by
* size of stack_dummy section */
__StackTop = ORIGIN(Ram0_16) + LENGTH(Ram0_16);
__StackLimit = __StackTop - SIZEOF(.stack_dummy);
PROVIDE(__stack = __StackTop);

/* Check if data + heap + stack exceeds RAM limit */
ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
}
Loading

0 comments on commit e4419e7

Please sign in to comment.