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

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

Question about the transport #1872

Closed jamesluo11 closed 1 year ago

jamesluo11 commented 1 year ago

I'm trying to port the aws iot sdk embeded c to our embededed system, which runs on FreeRTOS and ARM. When i executed the cmake, i found the SDK have dependency on OpenSSL library, and i have no configuration to avoid this check. I think in most embeded system, there is mbedtls instead. 图片

ActoryOu commented 1 year ago

Hi @jamesluo11, Thanks for your feedback!

If I understand your issue correctly, you're now running FreeRTOS based on ARM chip set, which is not POSIX system. In this repository, we're now supporting posix only. (posix directory under platform)

I'd suggest you to

  1. Take Featured FreeRTOS IoT Reference Integration(with NXP RT1060) as reference.
    • We provide an example based on NXP RT1060 + FreeRTOS with lots of libraries integrated and the repository is also an open source project.
  2. Take FreeRTOS as reference.

BTW, I suggest to post questions on FreeRTOS Forum. There are many experts answering questions.

Let me know if you have further questions.

Thanks.

ActoryOu commented 1 year ago

Hi @jamesluo11, I'm closing this issue since there is no further questions. Feel free to create a new one if any further questions.

Thanks!