forked from adafruit/circuitpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
157 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2020-11-04 21:18+0530\n" | ||
"POT-Creation-Date: 2020-11-10 15:30+0530\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -296,7 +296,8 @@ msgstr "" | |
msgid "All I2C peripherals are in use" | ||
msgstr "" | ||
|
||
#: ports/esp32s2/peripherals/pcnt_handler.c | ||
#: ports/esp32s2/common-hal/countio/Counter.c | ||
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c | ||
msgid "All PCNT units in use" | ||
msgstr "" | ||
|
||
|
@@ -992,6 +993,10 @@ msgstr "" | |
msgid "Incorrect buffer size" | ||
msgstr "" | ||
|
||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c | ||
msgid "Initialization failed due to lack of memory" | ||
msgstr "" | ||
|
||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c | ||
msgid "Input taking too long" | ||
msgstr "" | ||
|
@@ -3201,6 +3206,7 @@ msgstr "" | |
msgid "pow() with 3 arguments requires integers" | ||
msgstr "" | ||
|
||
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h | ||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h | ||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h | ||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h | ||
|
@@ -3416,6 +3422,7 @@ msgstr "" | |
msgid "time.struct_time() takes a 9-sequence" | ||
msgstr "" | ||
|
||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c | ||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c | ||
msgid "timeout duration exceeded the maximum supported value" | ||
msgstr "" | ||
|
@@ -3599,6 +3606,10 @@ msgstr "" | |
msgid "vectors must have same lengths" | ||
msgstr "" | ||
|
||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c | ||
msgid "watchdog not initialized" | ||
msgstr "" | ||
|
||
#: shared-bindings/watchdog/WatchDogTimer.c | ||
msgid "watchdog timeout must be greater than 0" | ||
msgstr "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// No watchdog module functions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
* This file is part of the MicroPython project, http://micropython.org/ | ||
* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2020 microDev | ||
* | ||
* 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/runtime.h" | ||
#include "common-hal/watchdog/WatchDogTimer.h" | ||
|
||
#include "shared-bindings/microcontroller/__init__.h" | ||
|
||
#include "esp_task_wdt.h" | ||
|
||
void esp_task_wdt_isr_user_handler(void) { | ||
|
||
} | ||
|
||
void common_hal_watchdog_feed(watchdog_watchdogtimer_obj_t *self) { | ||
if (esp_task_wdt_reset() != ESP_OK) { | ||
mp_raise_RuntimeError(translate("watchdog not initialized")); | ||
} | ||
} | ||
|
||
void common_hal_watchdog_deinit(watchdog_watchdogtimer_obj_t *self) { | ||
if (esp_task_wdt_deinit() == ESP_OK) { | ||
self->mode = WATCHDOGMODE_NONE; | ||
} | ||
} | ||
|
||
void watchdog_reset(void) { | ||
common_hal_watchdog_deinit(&common_hal_mcu_watchdogtimer_obj); | ||
} | ||
|
||
static void wdt_config(watchdog_watchdogtimer_obj_t *self) { | ||
// enable panic hanler in WATCHDOGMODE_RESET mode | ||
// initialize Task Watchdog Timer (TWDT) | ||
if (esp_task_wdt_init((uint32_t)self->timeout, (self->mode == WATCHDOGMODE_RESET)) != ESP_OK) { | ||
mp_raise_RuntimeError(translate("Initialization failed due to lack of memory")); | ||
} | ||
esp_task_wdt_add(NULL); | ||
} | ||
|
||
mp_float_t common_hal_watchdog_get_timeout(watchdog_watchdogtimer_obj_t *self) { | ||
return self->timeout; | ||
} | ||
|
||
void common_hal_watchdog_set_timeout(watchdog_watchdogtimer_obj_t *self, mp_float_t new_timeout) { | ||
if ((uint64_t)new_timeout > UINT32_MAX) { | ||
mp_raise_ValueError(translate("timeout duration exceeded the maximum supported value")); | ||
} | ||
if ((uint32_t)self->timeout != (uint32_t)new_timeout) { | ||
self->timeout = new_timeout; | ||
wdt_config(self); | ||
} | ||
} | ||
|
||
watchdog_watchdogmode_t common_hal_watchdog_get_mode(watchdog_watchdogtimer_obj_t *self) { | ||
return self->mode; | ||
} | ||
|
||
void common_hal_watchdog_set_mode(watchdog_watchdogtimer_obj_t *self, watchdog_watchdogmode_t new_mode) { | ||
if (self->mode != new_mode) { | ||
self->mode = new_mode; | ||
wdt_config(self); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* This file is part of the MicroPython project, http://micropython.org/ | ||
* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2020 microDev | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef MICROPY_INCLUDED_ESP32S2_COMMON_HAL_WATCHDOG_WATCHDOGTIMER_H | ||
#define MICROPY_INCLUDED_ESP32S2_COMMON_HAL_WATCHDOG_WATCHDOGTIMER_H | ||
|
||
#include "py/obj.h" | ||
#include "shared-bindings/watchdog/WatchDogMode.h" | ||
#include "shared-bindings/watchdog/WatchDogTimer.h" | ||
|
||
struct _watchdog_watchdogtimer_obj_t { | ||
mp_obj_base_t base; | ||
mp_float_t timeout; | ||
watchdog_watchdogmode_t mode; | ||
}; | ||
|
||
// This needs to be called in order to disable the watchdog if it's set to | ||
// "RAISE". If set to "RESET", then the watchdog cannot be reset. | ||
void watchdog_reset(void); | ||
|
||
#endif // MICROPY_INCLUDED_ESP32S2_COMMON_HAL_WATCHDOG_WATCHDOGTIMER_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// No watchdog module functions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters