meh
Fork of mbed by
TARGET_LPC4088/sys_helper.h@76:824293ae5e43, 2014-01-13 (annotated)
- Committer:
- bogdanm
- Date:
- Mon Jan 13 15:31:11 2014 +0200
- Revision:
- 76:824293ae5e43
Release 76 of the mbed library
Main changes:
- enabled SPI slave on LPC812
- the RTOS should now work with GCC_CR (LPC1768 and LPC4088)
- GCC now uses 'hard' as the floating point ABI (arguments in floating point registers)
- Bug fixes on various platforms
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 76:824293ae5e43 | 1 | #ifndef SYS_HELPER_H |
bogdanm | 76:824293ae5e43 | 2 | #define SYS_HELPER_H |
bogdanm | 76:824293ae5e43 | 3 | |
bogdanm | 76:824293ae5e43 | 4 | #include <stdint.h> |
bogdanm | 76:824293ae5e43 | 5 | |
bogdanm | 76:824293ae5e43 | 6 | #ifdef __cplusplus |
bogdanm | 76:824293ae5e43 | 7 | extern "C" { |
bogdanm | 76:824293ae5e43 | 8 | #endif |
bogdanm | 76:824293ae5e43 | 9 | |
bogdanm | 76:824293ae5e43 | 10 | uint32_t __reserved_stack_size(); |
bogdanm | 76:824293ae5e43 | 11 | |
bogdanm | 76:824293ae5e43 | 12 | #ifdef __cplusplus |
bogdanm | 76:824293ae5e43 | 13 | } |
bogdanm | 76:824293ae5e43 | 14 | #endif |
bogdanm | 76:824293ae5e43 | 15 | |
bogdanm | 76:824293ae5e43 | 16 | #endif |