2020-10-15 19:59:29 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "py/enum.h"
|
|
|
|
|
|
|
|
#include "shared-bindings/supervisor/RunReason.h"
|
|
|
|
|
2020-11-21 23:29:52 -05:00
|
|
|
MAKE_ENUM_VALUE(supervisor_run_reason_type, run_reason, STARTUP, RUN_REASON_STARTUP);
|
2020-11-23 22:44:53 -05:00
|
|
|
MAKE_ENUM_VALUE(supervisor_run_reason_type, run_reason, AUTO_RELOAD, RUN_REASON_AUTO_RELOAD);
|
2020-11-21 23:29:52 -05:00
|
|
|
MAKE_ENUM_VALUE(supervisor_run_reason_type, run_reason, SUPERVISOR_RELOAD, RUN_REASON_SUPERVISOR_RELOAD);
|
|
|
|
MAKE_ENUM_VALUE(supervisor_run_reason_type, run_reason, REPL_RELOAD, RUN_REASON_REPL_RELOAD);
|
2020-10-15 19:59:29 -04:00
|
|
|
|
|
|
|
//| class RunReason:
|
2020-11-21 23:29:52 -05:00
|
|
|
//| """The reason that CircuitPython started running."""
|
2020-10-15 19:59:29 -04:00
|
|
|
//|
|
|
|
|
//| STARTUP: object
|
2020-11-24 23:36:59 -05:00
|
|
|
//| """CircuitPython started the microcontroller started up. See `microcontroller.Processor.reset_reason`
|
2020-11-21 23:29:52 -05:00
|
|
|
//| for more detail on why the microcontroller was started."""
|
2020-10-15 19:59:29 -04:00
|
|
|
//|
|
2020-11-22 19:10:09 -05:00
|
|
|
//| AUTO_RELOAD: object
|
|
|
|
//| """CircuitPython restarted due to an external write to the filesystem."""
|
2020-10-15 19:59:29 -04:00
|
|
|
//|
|
|
|
|
//| SUPERVISOR_RELOAD: object
|
2020-11-21 23:29:52 -05:00
|
|
|
//| """CircuitPython restarted due to a call to `supervisor.reload()`."""
|
2020-10-15 19:59:29 -04:00
|
|
|
//|
|
2020-11-21 23:29:52 -05:00
|
|
|
//| REPL_RELOAD: object
|
|
|
|
//| """CircuitPython started due to the user typing CTRL-D in the REPL."""
|
2020-10-15 19:59:29 -04:00
|
|
|
//|
|
2020-11-23 22:44:53 -05:00
|
|
|
MAKE_ENUM_MAP(supervisor_run_reason) {
|
2020-11-21 23:29:52 -05:00
|
|
|
MAKE_ENUM_MAP_ENTRY(run_reason, STARTUP),
|
2020-11-22 19:10:09 -05:00
|
|
|
MAKE_ENUM_MAP_ENTRY(run_reason, AUTO_RELOAD),
|
2020-11-21 23:29:52 -05:00
|
|
|
MAKE_ENUM_MAP_ENTRY(run_reason, SUPERVISOR_RELOAD),
|
|
|
|
MAKE_ENUM_MAP_ENTRY(run_reason, REPL_RELOAD),
|
2020-10-15 19:59:29 -04:00
|
|
|
};
|
2020-11-21 23:29:52 -05:00
|
|
|
STATIC MP_DEFINE_CONST_DICT(supervisor_run_reason_locals_dict, supervisor_run_reason_locals_table);
|
2020-10-15 19:59:29 -04:00
|
|
|
|
2020-11-21 23:29:52 -05:00
|
|
|
MAKE_PRINTER(supervisor, supervisor_run_reason);
|
2020-10-15 19:59:29 -04:00
|
|
|
|
2020-11-21 23:29:52 -05:00
|
|
|
MAKE_ENUM_TYPE(supervisor, RunReason, supervisor_run_reason);
|