The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
AnnaBridge
Date:
Wed Feb 20 20:53:29 2019 +0000
Revision:
172:65be27845400
Parent:
171:3a7713b1edbc
mbed library release version 165

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 165:d1b4690b3f8b 1 #ifndef __REG32_T
AnnaBridge 165:d1b4690b3f8b 2 #define __REG32_T
AnnaBridge 165:d1b4690b3f8b 3
AnnaBridge 165:d1b4690b3f8b 4 union reg32_t {
AnnaBridge 165:d1b4690b3f8b 5 volatile uint32_t UINT32;
AnnaBridge 165:d1b4690b3f8b 6 volatile uint16_t UINT16[2];
AnnaBridge 165:d1b4690b3f8b 7 volatile uint8_t UINT8[4];
AnnaBridge 165:d1b4690b3f8b 8 };
AnnaBridge 165:d1b4690b3f8b 9
AnnaBridge 165:d1b4690b3f8b 10
AnnaBridge 165:d1b4690b3f8b 11 #endif