Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
TARGET_RZ_A1H/reg32_t.h@99:7f6c6de930c0, 2015-05-03 (annotated)
- Committer:
- Mikchel
- Date:
- Sun May 03 16:04:42 2015 +0000
- Revision:
- 99:7f6c6de930c0
- Parent:
- 92:4fc01daae5a5
12
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 |