リセット情報の取得とソフトウェアリセットを実行できるライブラリ。
【ライブラリ】
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
/* avr8_reset.h - Reset Control Driver for Microchip AVR8 Series Copyright (c) 2025 Sasapea's Lab. All right reserved. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ #pragma once #include "avr8_config.h" #if defined(RSTCTRL_SWRE_bm) #define RSTCTRL_SWRST_bm RSTCTRL_SWRE_bm #endif class Reset { public: /* RSTCTRL.RSTFR bit masks and bit positions */ typedef enum { STATUS_PORF = RSTCTRL_PORF_bm, /* Power on Reset flag bit mask. */ STATUS_BORF = RSTCTRL_BORF_bm, /* Brown out detector Reset flag bit mask. */ STATUS_EXTRF = RSTCTRL_EXTRF_bm, /* External Reset flag bit mask. */ STATUS_WDRF = RSTCTRL_WDRF_bm, /* Watch dog Reset flag bit mask. */ STATUS_SWRF = RSTCTRL_SWRF_bm, /* Software Reset flag bit mask. */ STATUS_UPDIRF = RSTCTRL_UPDIRF_bm, /* UPDI Reset flag bit mask. */ } STATUS; static STATUS status(void) { return (STATUS)RSTCTRL.RSTFR; } static void swreset(void) { RSTCTRL.SWRR = RSTCTRL_SWRST_bm; } }; |
【関連投稿】
Microchip AVR8 用のライブラリを自作する。(GPIO)
Microchip AVR8 用のライブラリを自作する。(FUSE)
Microchip AVR8 用のライブラリを自作する。(CLOCK)
Microchip AVR8 用のライブラリを自作する。(RESET)
Microchip AVR8 用のライブラリを自作する。(PORTMUX)
Microchip AVR8 用のライブラリを自作する。(USART)
Microchip AVR8 用のライブラリを自作する。(RTC)
Microchip AVR8 用のライブラリを自作する。(TCA)
Microchip AVR8 用のライブラリを自作する。(TCB)
Microchip AVR8 用のライブラリを自作する。(VREF)
Microchip AVR8 用のライブラリを自作する。(DAC)
Microchip AVR8 用のライブラリを自作する。(AC)
Microchip AVR8 用のライブラリを自作する。(ADC)
Microchip AVR8 用のライブラリを自作する。(ZCD)
Microchip AVR8 用のライブラリを自作する。(SPI)
Microchip AVR8 用のライブラリを自作する。(TWI)
Microchip AVR8 用のライブラリを自作する。(YIELD)
Microchip AVR8 用のライブラリを自作する。(CONFIG)
