Skip to content

NightSkySK/esp-double-reset

 
 

Repository files navigation

double_reset

test

This repo is forked from mdvorak/esp-double-reset/

Detect double reset, which can be used to place program in special reconfiguration mode, like entering Wi-Fi credentials.

Usage

To reference this library by your project, add it as git submodule, using command

git submodule add https://github.com/NightSkySK/esp-double-reset.git components/double_reset

or use it as platformio library

[env]
lib_deps =
    https://github.com/NightSkySK/esp-double-reset.git#v1.0.3

Note that when used as platformio library, Kconfig is not available. Either add Kconfig contents to your Kconfig.projbuild, or set DOUBLE_RESET_DEFAULT_TIMEOUT manually, via

[env]
build_flags = -D DOUBLE_RESET_DEFAULT_TIMEOUT=3000

Example

#include <double_reset.h>

void app_main() 
{
	// Initialize NVS
	esp_err_t ret = nvs_flash_init();
	if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND)
	{
		ESP_ERROR_CHECK(nvs_flash_erase());
		ret = nvs_flash_init();
	}
	ESP_ERROR_CHECK(ret);

	// Check double reset
	// NOTE this should be called as soon as possible, ideally right after nvs init
	bool reconfigure = false;
	ESP_ERROR_CHECK(double_reset_start(&reconfigure, 10000));

	if (reconfigure)
	{
		ESP_LOGI(TAG, "double reset detected!");
	}

	// Setup complete
	ESP_LOGI(TAG, "started");
}

For working example, see example/main.cpp.

Development

Prepare ESP-IDF development environment .

Configure example application with

cd example/
idf.py menuconfig

Flash it via (in the example dir)

idf.py build flash monitor

As an alternative, you can use PlatformIO to build and flash the example project.

About

Detect double reset on ESP32, based on ESP-IDF.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 93.8%
  • CMake 6.2%