Hi,
I am using stm32 and m95 module for an IOT device. M95 does call and sms functions.
I want to write Key and Certificate file to RAM for SSL Server connection. But I didn’t understand how to command include file path.
In GSM_SSL_Application_Note_V3.3 document,
Part of 3.1. SSL Function with Certificate and Key in RAM,
this command is used first:
AT+QSECWRITE=“RAM:ca_cert.pem”,1614,100
But I use this function for AT command in my firmware:
gsm_command(“AT+QSECDEL="RAM:ca_cert.pem"\r”, 300, msg, 100, 1, “\r\nOK\r\n”, “\r\n+CME ERROR:”);
- So how does M95 find the file path?
- Where is ca_cert.pem?
- Where should be it?
And another example in
GSM_FILE _AT_Commands_Manual_V1.5
5. Examples:
How does M95 find test2.txt file?