| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * This file is part of the MicroPython project, http://micropython.org/
- *
- * The MIT License (MIT)
- *
- * Copyright (c) 2019 ChenYong (chenyong@rt-thread.com)
- *
- * 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 <string.h>
- #include "py/nlr.h"
- #include "py/obj.h"
- #include "py/runtime.h"
- #include "modmachine.h"
- #include "mphalport.h"
- #ifdef MICROPYTHON_USING_MACHINE_WDT
- #include <rtthread.h>
- #include <rtdevice.h>
- #include "machine_wdt.h"
- typedef struct _machine_wdt_obj_t {
- mp_obj_base_t base;
- rt_device_t wdt_device;
- }machine_wdt_obj_t;
- const mp_obj_type_t machine_wdt_type;
- STATIC void error_check(bool status, const char *msg) {
- if (!status) {
- nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, msg));
- }
- }
- STATIC mp_obj_t machine_wdt_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
- #define MP_WDT_DEV_NAME "wdt"
- machine_wdt_obj_t *self = m_new_obj(machine_wdt_obj_t);
- char wdt_dev_name[RT_NAME_MAX] = {0};
- rt_err_t result = RT_EOK;
- mp_int_t timeout = 5;
- // check arguments
- mp_arg_check_num(n_args, n_kw, 0, 2, false);
- if (n_args == 2) {
- // check input WDT device name or ID
- if (mp_obj_is_small_int(args[0])) {
- rt_snprintf(wdt_dev_name, sizeof(wdt_dev_name), "wdt%d", mp_obj_get_int(args[0]));
- } else if (mp_obj_is_qstr(args[0])) {
- rt_strncpy(wdt_dev_name, mp_obj_str_get_str(args[0]), RT_NAME_MAX);
- } else {
- error_check(0, "Input WDT device name or ID error.");
- }
- timeout = mp_obj_get_int(args[1]);
- error_check(timeout >= 1, "input timeout value error");
- } else if (n_args == 1) {
- if (mp_obj_is_small_int(args[0])) {
- timeout = mp_obj_get_int(args[0]);
- error_check(timeout >= 1, "input timeout value error");
- } else if (mp_obj_is_qstr(args[0])) {
- rt_strncpy(wdt_dev_name, mp_obj_str_get_str(args[0]), RT_NAME_MAX);
- } else {
- error_check(0, "Input WDT device name or ID error.");
- }
- } else {
- rt_strncpy(wdt_dev_name, MP_WDT_DEV_NAME, RT_NAME_MAX);
- }
- self->base.type = &machine_wdt_type;
- // find WDT device
- self->wdt_device = rt_device_find(wdt_dev_name);
- if (self->wdt_device == RT_NULL || self->wdt_device->type != RT_Device_Class_Security) {
- nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError, "WDT(%s) don't exist", wdt_dev_name));
- }
- result = rt_device_init(self->wdt_device);
- error_check(result == RT_EOK, "WDT init error");
- // set WDT device timout
- result = rt_device_control(self->wdt_device, RT_DEVICE_CTRL_WDT_SET_TIMEOUT, (void *)&timeout);
- error_check(result == RT_EOK, "WDT set timout error");
- result = rt_device_control(self->wdt_device, RT_DEVICE_CTRL_WDT_START, RT_NULL);
- error_check(result == RT_EOK, "WDT start error");
- // return constant object
- return MP_OBJ_FROM_PTR(self);
- }
- STATIC mp_obj_t machine_wdt_feed(mp_obj_t self_in) {
- /* idle task feed */
- machine_wdt_obj_t *self = MP_OBJ_TO_PTR(self_in);
- rt_err_t result = RT_EOK;
- result = rt_device_control(self->wdt_device, RT_DEVICE_CTRL_WDT_KEEPALIVE, RT_NULL);
- error_check(result == RT_EOK, "WDT feed failed");
- return mp_const_none;
- }
- STATIC MP_DEFINE_CONST_FUN_OBJ_1(machine_wdt_feed_obj, machine_wdt_feed);
- STATIC const mp_rom_map_elem_t machine_wdt_locals_dict_table[] = {
- { MP_ROM_QSTR(MP_QSTR_feed), MP_ROM_PTR(&machine_wdt_feed_obj) },
- };
- STATIC MP_DEFINE_CONST_DICT(machine_wdt_locals_dict, machine_wdt_locals_dict_table);
- const mp_obj_type_t machine_wdt_type = {
- { &mp_type_type },
- .name = MP_QSTR_WDT,
- .make_new = machine_wdt_make_new,
- .locals_dict = (mp_obj_t) &machine_wdt_locals_dict,
- };
- #endif // MICROPYTHON_USING_MACHINE_WDT
|