17 lines
402 B
C
17 lines
402 B
C
// This file is part of the CircuitPython project: https://circuitpython.org
|
|
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 2020 Sean Cross for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "py/enum.h"
|
|
|
|
typedef enum {
|
|
WATCHDOGMODE_NONE,
|
|
WATCHDOGMODE_RAISE,
|
|
WATCHDOGMODE_RESET,
|
|
} watchdog_watchdogmode_t;
|
|
|
|
extern const mp_obj_type_t watchdog_watchdogmode_type;
|