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
질문됨 일 년 전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
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인