IoT core integration with FreeRTOS or no OS

0

How will the IoT core SDK run on an embedded device with no OS or one that runs FreeRTOS? I see only examples for Linux and Windows with java and python, but what about embedded devices that have no OS or have FreeRTOS and use C++? Can these integrate with IoT Core?

Mo
已提问 1 年前480 查看次数
1 回答
1

Hi Mo. You can use any MQTT client to build a device that integrates with IoT Core. However, AWS offers several device software options that include support for advanced features like shadows and jobs, so you don't have to build those from scratch. The main device software options of interest in your case will be the AWS IoT Device SDK for Embedded C and the AWS IoT Device SDK for C++.

The embedded C SDK is intended for resource-constrained micro-controllers, with KBs of RAM. It's a collection of very lean and highly portable C libraries, that you can use with FreeRTOS, other micro-kernels or on bare metal systems. The embedded C SDK libraries are also distributed with our FreeRTOS releases (FreeRTOS and the embedded C SDK sub-module the same libraries). You choose libraries a-la-carte, including only the libraries you need for the features you intend to use. Therefore you have a lot of control over the memory footprint. Ballpark code size of each library is published in the documentation. For example, for the coreMQTT library: https://www.freertos.org/mqtt/index.html

The embedded C SDK demos are intended to built and run on POSIX systems using OpenSSL. They are just for getting to know the libraries without embedded hardware. In the recently deprecated amazon-freertos repository you can find reference integrations for various partner embedded hardware.

profile pictureAWS
专家
Greg_B
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则