2019-10-19 07:14 AM
Hi,
I'm trying to use my STM32F7 Discovery Kit to just fire a HTTPS-Get Request up to my Server.
Im using mbedtls and some http(s)-library I found on Github. But that doesn't feel right, is there any official Guide, Library or even a sample project for a simple https client?
Thanks in Advance
Solved! Go to Solution.
2019-10-22 03:04 AM
Dear Anon767,
I have found something relevant in STM32CubeF4:
It contains a https client example (there is a https server example as well) :
STM32CubeF4_V1.24.0\STM32Cube_FW_F4_V1.24.0\Projects\STM324xG_EVAL\Applications\mbedTLS\SSL_Client
I guess this example exists for every board...
Having read through the readme.txt it seems to me that this project uses lwIP socket API and FreeRTOS.
Has anybody heard about such example which uses lwIP raw API without operating system?
Simon
2019-10-22 02:29 AM
I would be also very happy for such example. Actually a https server example would be better...
2019-10-22 03:04 AM
Dear Anon767,
I have found something relevant in STM32CubeF4:
It contains a https client example (there is a https server example as well) :
STM32CubeF4_V1.24.0\STM32Cube_FW_F4_V1.24.0\Projects\STM324xG_EVAL\Applications\mbedTLS\SSL_Client
I guess this example exists for every board...
Having read through the readme.txt it seems to me that this project uses lwIP socket API and FreeRTOS.
Has anybody heard about such example which uses lwIP raw API without operating system?
Simon
2019-10-22 08:13 AM
Thank you very much!
I couldn't find the same for the STM32f7 but I'll try to port it