mbed library with additional peripherals for ST F401 board
Fork of mbed-src by
This mbed LIB has additional peripherals for ST F401 board
- UART2 : PA_3 rx, PA_2 tx
- UART3 : PC_7 rx, PC_6 tx
- I2C2 : PB_3 SDA, PB_10 SCL
- I2C3 : PB_4 SDA, PA_8 SCL
Diff: common/retarget.cpp
- Revision:
- 23:8d50de55f208
- Parent:
- 20:4263a77256ae
- Child:
- 24:75304dd5f5fb
diff -r dbd009839d5e -r 8d50de55f208 common/retarget.cpp --- a/common/retarget.cpp Fri Sep 13 14:22:58 2013 +0100 +++ b/common/retarget.cpp Mon Sep 16 16:15:04 2013 +0100 @@ -439,13 +439,20 @@ #undef errno extern "C" int errno; +// For ARM7 only +register unsigned char * stack_ptr __asm ("sp"); + // Dynamic memory allocation related syscall. extern "C" caddr_t _sbrk(int incr) { static unsigned char* heap = (unsigned char*)&__end__; unsigned char* prev_heap = heap; unsigned char* new_heap = heap + incr; +#ifdef __get_MSP if (new_heap >= (unsigned char*)__get_MSP()) { +#else + if (new_heap >= stack_ptr) { +#endif errno = ENOMEM; return (caddr_t)-1; }