Fixes for S3/C3 betaflight passthrough flashing (#2714)
[ExpressLRS.git] / src / lib / SerialUpdate / stub_commands.h
blobed8853219b97d12a8edae2450e6d2f24529b6a9a
1 /*
2 * SPDX-FileCopyrightText: 2016-2022 Espressif Systems (Shanghai) CO LTD
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
7 /* Flasher command handlers, called from stub_flasher.c
9 Commands related to writing flash are in stub_write_flash_xxx.
11 #pragma once
12 #include <stdbool.h>
13 #include "soc_support.h"
14 #include "stub_flasher.h"
16 /* Get security info command only on ESP32S2 and later */
17 #if defined(HAS_SECURITY_INFO)
18 esp_command_error handle_get_security_info();
19 #endif