Russell Summers

Results 66 comments of Russell Summers

Please don't use cbor (compact binary object representation) until you need to stream data. cbor can be used, but you have encode it with a cbor encoder. The results you...

Everything is done in the same MQTT connection if that connection is authorized (policy/roles) are defined correctly at AWS. If the cert/key are being created, that you are at the...

Here is what the topics look like for Fleet Provisioning by Claim... // First Step std::string create_topic = "$aws/certificates/create/json"; // This is a publish topic std::string create_json_accepted_topic = "$aws/certificates/create/json/accepted"; //...

You'll need to set up Cloud watch to confirm that the AWS system created a Publish Out message. That message will be your payload response. Instructions on how to get...

Here is another serious possibility.... The demos are not well written (but they are simple enough). They block in the MQTT_ProcessLoop call for a small period. The time it takes...

When your write the word "yield" I suspect you are using an older library?? I use MQTT_ProcessLoop(pMqttContext, timeoutMS) for my message handling and it works very well. When you are...

My suggestion??? You haven't given much effort in looking at the examples because your MQTT_ProcessLoop isn't written to include any of the error handling that is shown in the demo...

You are working this in the original Linux platform? I'm doing everything in Windows 10. Its seems like they finally got all the Windows tool working and the environment has...

I thought you were talking about a Windows simulator possibly running on another OS. What simulator are you talking about? A hardware simulator for the ESP32 running on a Windows...

The process loop looks like this: mqttStatus = MQTT_ProcessLoop(pMqttContext, 100); In my experiments, I have never been able to shorten the process time beyond a minimum wait period. You can...