aws / aws-iot-device-sdk-embedded-C

SDK for connecting to AWS IoT from a device using embedded C.
MIT License
978 stars 625 forks source link

Can we connect to Greengrass Core device using this library #216

Closed fanghuaqi closed 6 years ago

fanghuaqi commented 6 years ago

Hi, I am wondering whether we can use this library to connect to Grassgrass core, and what is the relationship between this library and amazon_freertos?

Thanks Huaqi

lt72 commented 6 years ago

Hi @fanghuaqi, yes you can connect to greengrass, e.g. take a look at #202. This library duplicates the same set of services that FreeRTOS libs offer The intended users are those developers that either do not want/need to use FreeRTOS (e.g. they want/need to use a different RTOS or OS, e.g. embedded Linux), or that do not want to use and RTOS at all.

fanghuaqi commented 6 years ago

Hi @lt72 , thanks for your declaration, at first I thought this amazon_freertos is the only way to connect to Greengrass Core, btw, is there any official documentation about how to connect to Greengrass core. I will also take a look at the issue discussion.

Thanks Huaqi

lt72 commented 6 years ago

@fanghuaqi I believe this is the documentation: https://aws.amazon.com/documentation/greengrass/ @gordonwang0 any other pointers we can offer?

gordonwang0 commented 6 years ago

Hi @fanghuaqi,

This SDK doesn't "officially" support Greengrass, but many customers have successfully connected to GG.

Here are some helpful posts if you encounter any issues: #209, #208, #202, #193

fanghuaqi commented 6 years ago

Hi @gordonwang0 , got it, thanks a lot.