A library with drivers for different peripherals on the LPC4088 QuickStart Board or related add-on boards.
Dependencies:
FATFileSystem
Dependents:
LPC4088test
LPC4088test_ledonly
LPC4088test_deleteall
LPC4088_RAMtest
... more
1 comment:
embeddedartists
#
26 Jan 2015
Hi,
Unfortunately it is not as simple as that. If I add that then I get a compiler error complaining about the _sbrk being defined multiple times. The retarget.cpp file in the mbed SDK already defines it.
A possible but not very convenient workaround is to
- swap out the "mbed" library in your project for the "mbed-src" library
- export the project for ARM GCC
- open the libraries\mbed\common\retarget.cpp file
- comment out the _sbrk functions for TOOLCHAIN_GCC_ARM (found on lines 450-482)
- make the change in sdram.cpp that you suggested yourself
Kind Regards,
Embedded Artists
Hi,
Unfortunately it is not as simple as that. If I add that then I get a compiler error complaining about the _sbrk being defined multiple times. The retarget.cpp file in the mbed SDK already defines it.
A possible but not very convenient workaround is to
Kind Regards, Embedded Artists