Sensinode is most known for the Nanostack implementation of the 6LoWPAN standard. They are also known for their active contribution to standardization at IoT scheme. At Espotel, I have been involved as the project manager in a customer product development project where Nanostack was applied in a wireless sensor network for industrial automation application.
The mbed development platform is intended for fast creation of products based on ARM microcontrollers. It consists of software and hardware development tools (SDK, HDK), online IDE and support of the community. At the moment, there are 11 COTS MCU boards readily available from different vendors, ranging from Cortex-M0 to M4 core.
The mbed Compiler is a C/C++ IDE provided as a web app, thus most operating systems and browsers are supported as the host environment. Unlike with the BeagleBone C9, your mbed projects are stored in the cloud, not in the development platform itself. The IDE provides version control by default, but also rises some security concerns. For hobbyist and experimentation, that's maybe not a problem, if the code is intended to be published anyway.
Try it by yourself
I did some quick exercise with the mbed and a Freescale Freedom board KL25Z with Cortex-M0 core. In less time than what it takes to write this posting, I got my first code up and running in the target. There are just a few steps to follow, according to the instructions.
- Connect the board via USB cable meanwhile pressing the reset button. The device gets mounted as a USB mass storage in bootloader update mode.
- Update bootloader by drag-and-drop the image, then reset the device
- Open the IDE by clicking mbed icon at the device flash
- Write your code, compile, and save the binary to the device flash
- Reset the device, and you're running you new code !
FRDM-KL25Z blinking blue and green LED. |
About the security concern I mentioned. There is always possibility to export your project to a third-party off-line IDE, like IAR, CodeRed or gcc.
ReplyDeleteHere are the instructions:
https://mbed.org/handbook/Exporting-to-offline-toolchains