mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-03 05:46:32 +02:00
Summary Added compiler.warning_flags to all chips in platform.txt to reflect users setting of warning level output during compilation (set up in Arduino IDE preferences) Impact When a warning is set to none the compilation will no longer display warnings Related links Solves issue #6118
This commit is contained in:
12
libraries/RainMaker/src/RMakerUtils.cpp
Normal file
12
libraries/RainMaker/src/RMakerUtils.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include "RMakerUtils.h"
|
||||
#ifdef CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK
|
||||
void RMakerFactoryReset(int seconds)
|
||||
{
|
||||
esp_rmaker_factory_reset(0, seconds);
|
||||
}
|
||||
|
||||
void RMakerWiFiReset(int seconds)
|
||||
{
|
||||
esp_rmaker_wifi_reset(0, seconds);
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user