The official mbed C/C SDK provides the software platform and libraries to build your applications.
Fork of mbed by
TARGET_RZ_A1H/reg32_t.h@92:4fc01daae5a5, 2014-11-27 (annotated)
- Committer:
- bogdanm
- Date:
- Thu Nov 27 13:33:22 2014 +0000
- Revision:
- 92:4fc01daae5a5
Release 92 of the mbed libray
Main changes:
- nRF51822: fixed pin assignment issues
- ST targets moving to the STM32Cube driver
- LPC1439: fixed serial interrupt issue
- first Cortex-A platform supported in mbed (RZ_A1H)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 92:4fc01daae5a5 | 1 | #ifndef __REG32_T |
bogdanm | 92:4fc01daae5a5 | 2 | #define __REG32_T |
bogdanm | 92:4fc01daae5a5 | 3 | |
bogdanm | 92:4fc01daae5a5 | 4 | union reg32_t { |
bogdanm | 92:4fc01daae5a5 | 5 | volatile uint32_t UINT32; |
bogdanm | 92:4fc01daae5a5 | 6 | volatile uint16_t UINT16[2]; |
bogdanm | 92:4fc01daae5a5 | 7 | volatile uint8_t UINT8[4]; |
bogdanm | 92:4fc01daae5a5 | 8 | }; |
bogdanm | 92:4fc01daae5a5 | 9 | |
bogdanm | 92:4fc01daae5a5 | 10 | |
bogdanm | 92:4fc01daae5a5 | 11 | #endif |