From eb0799a6070e098b60b77d40854ed4663747684e Mon Sep 17 00:00:00 2001 From: Andre Thomas Date: Sat, 8 Jun 2019 21:51:19 +0200 Subject: [PATCH] Change include of my_user_config.h @arendst For some reason xtensa-lx106-elf-gcc v2.5.0-3-20ed2b9 does not find the file unless it is explicitly indicated to first look for it in the same folder the file is which is including it. I'm not sure if you did this intentionally or not - if so then leave as is and I'll do a sed command to update it prior to compiles. --- sonoff/sonoff_aws_iot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonoff/sonoff_aws_iot.cpp b/sonoff/sonoff_aws_iot.cpp index cefdb556b..ae04726d0 100644 --- a/sonoff/sonoff_aws_iot.cpp +++ b/sonoff/sonoff_aws_iot.cpp @@ -17,7 +17,7 @@ along with this program. If not, see . */ -#include +#include "my_user_config.h" #ifdef USE_MQTT_AWS_IOT #include @@ -149,4 +149,4 @@ const br_x509_certificate *AWS_IoT_Client_Certificate = &CHAIN[0]; } -#endif // USE_MQTT_AWS_IOT \ No newline at end of file +#endif // USE_MQTT_AWS_IOT