mirror of https://github.com/arendst/Tasmota.git
Merge pull request #5930 from andrethomas/patch-1
Change include of my_user_config.h
This commit is contained in:
commit
76919b2111
|
@ -4,6 +4,7 @@
|
|||
* Add support for AWS IoT with TLS 1.2 on core 2.5.2. Full doc here: https://github.com/arendst/Sonoff-Tasmota/wiki/AWS-IoT
|
||||
* Add some MQTT housekeeping which might solve issue (#5755)
|
||||
* Add command SetOption65 0/1 and more Tuya Serial based device support (#5815)
|
||||
* Fix include of my_user_config.h in sonoff_aws_iot.cpp (#5930)
|
||||
*
|
||||
* 6.5.0.14 20190602
|
||||
* Change webserver HTML input, button, textarea, and select name based on id
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <my_user_config.h>
|
||||
#include "my_user_config.h"
|
||||
#ifdef USE_MQTT_AWS_IOT
|
||||
|
||||
#include <bearssl/bearssl.h>
|
||||
|
@ -149,4 +149,4 @@ const br_x509_certificate *AWS_IoT_Client_Certificate = &CHAIN[0];
|
|||
|
||||
}
|
||||
|
||||
#endif // USE_MQTT_AWS_IOT
|
||||
#endif // USE_MQTT_AWS_IOT
|
||||
|
|
Loading…
Reference in New Issue