Reputation: 85
Hy, I can build mbedOS (mbed version of 3.0) with the yotta build system. Now I need a little help, to build mbed2.0 locally. I know there is an online compiler in the developer arm site, but i need to get some details about what is the difference between the two OS.
Thanks.
Upvotes: 1
Views: 687
Reputation: 27352
Take a look at Offline development and debugging in the official docs.
Upvotes: 1
Reputation: 186
Levente,
mbed OS is an OS, mbed classic is an SDK (Software Development Kit). There is an RTOS in mbed classic, but it is not in any way related to mbed OS. mbed classic is at its core a hardware abstraction layer that lets you write code once and run on multiple different mbed enabled platforms (70+ ARM Cortex A/M boards). With mbed classic you can either compile code in the online compiler or export the code offline to a desktop IDE to compile it (Keil, IAR, GCC/make ... etc).
For more about mbed classic see developer.mbed.org/handbook.
Upvotes: 1