2016-10-25 17:27:59 -04:00
|
|
|
/*
|
2017-08-27 15:02:50 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2016-10-25 17:27:59 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Scott Shawcroft for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-09-22 21:05:51 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_SUPERVISOR_AUTORELOAD_H
|
|
|
|
#define MICROPY_INCLUDED_SUPERVISOR_AUTORELOAD_H
|
2016-10-25 17:27:59 -04:00
|
|
|
|
2022-03-11 13:29:20 -05:00
|
|
|
#include "py/obj.h"
|
|
|
|
#include "shared-bindings/supervisor/RunReason.h"
|
2020-10-29 11:39:06 -04:00
|
|
|
|
|
|
|
enum {
|
2021-06-20 17:00:56 -04:00
|
|
|
SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_SUCCESS = 0x1,
|
|
|
|
SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_ERROR = 0x2,
|
|
|
|
SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_SUCCESS = 0x4,
|
|
|
|
SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_ERROR = 0x8,
|
|
|
|
SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_RELOAD = 0x10,
|
|
|
|
SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET = 0x20,
|
2020-10-29 11:39:06 -04:00
|
|
|
};
|
|
|
|
|
2021-08-23 21:08:30 -04:00
|
|
|
enum {
|
2022-03-04 13:34:20 -05:00
|
|
|
AUTORELOAD_SUSPEND_REPL = 0x1,
|
2022-03-14 19:49:30 -04:00
|
|
|
AUTORELOAD_SUSPEND_BLE = 0x2,
|
2022-06-22 19:44:41 -04:00
|
|
|
AUTORELOAD_SUSPEND_USB = 0x4,
|
|
|
|
AUTORELOAD_SUSPEND_WEB = 0x8
|
2021-08-23 21:08:30 -04:00
|
|
|
};
|
|
|
|
|
2022-03-14 19:49:30 -04:00
|
|
|
// Helper for exiting the VM and reloading immediately.
|
2022-03-11 13:29:20 -05:00
|
|
|
void reload_initiate(supervisor_run_reason_t run_reason);
|
2016-10-25 17:27:59 -04:00
|
|
|
|
2022-03-14 19:49:30 -04:00
|
|
|
// Enabled state is user controllable and very sticky. We don't reset it.
|
2017-05-12 19:45:38 -04:00
|
|
|
void autoreload_enable(void);
|
|
|
|
void autoreload_disable(void);
|
|
|
|
bool autoreload_is_enabled(void);
|
2016-10-25 17:27:59 -04:00
|
|
|
|
2022-03-14 19:49:30 -04:00
|
|
|
// Start the autoreload process.
|
|
|
|
void autoreload_trigger(void);
|
|
|
|
// True when the autoreload should occur. (A trigger happened and the delay has
|
|
|
|
// passed.)
|
|
|
|
bool autoreload_ready(void);
|
|
|
|
// Reset the autoreload timer in preparation for another trigger. Call when the
|
|
|
|
// last trigger starts being executed.
|
|
|
|
void autoreload_reset(void);
|
|
|
|
// True when a trigger has occurred but we're still delaying in case another
|
|
|
|
// trigger occurs.
|
|
|
|
bool autoreload_pending(void);
|
|
|
|
|
|
|
|
// Temporarily turn autoreload off, for the given reason(s). Autoreload triggers
|
|
|
|
// will still be tracked so resuming with autoreload ready with cause an
|
|
|
|
// immediate reload.
|
2022-03-11 13:29:20 -05:00
|
|
|
// Used during the REPL or during parts of BLE workflow.
|
2022-03-04 13:34:20 -05:00
|
|
|
void autoreload_suspend(uint32_t suspend_reason_mask);
|
|
|
|
// Allow autoreloads again, for the given reason(s).
|
|
|
|
void autoreload_resume(uint32_t suspend_reason_mask);
|
2017-11-15 17:44:14 -05:00
|
|
|
|
2017-09-22 21:05:51 -04:00
|
|
|
#endif // MICROPY_INCLUDED_SUPERVISOR_AUTORELOAD_H
|