Brownoutは、電源電圧を監視し設定された閾値を跨いだ時にイベントを発生させたりCPUリセットをかけたりすることができる。
【ライブラリ】
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
/* brownout.h - BrownOut Library for NXP-JN516x Copyright (c) 2022 Sasapea's Lab. All right reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #pragma once #include <jendefs.h> #include <AppHardwareApi.h> class BrownOut { public: typedef enum { VBOREF_1V95 = E_AHI_VBOREF_1V95, // 1.95V VBOREF_2V0 = E_AHI_VBOREF_2V0, // 2.0V (default) VBOREF_2V1 = E_AHI_VBOREF_2V1, // 2.1V VBOREF_2V2 = E_AHI_VBOREF_2V2, // 2.2V VBOREF_2V3 = E_AHI_VBOREF_2V3, // 2.3V VBOREF_2V4 = E_AHI_VBOREF_2V4, // 2.4V VBOREF_2V7 = E_AHI_VBOREF_2V7, // 2.7V VBOREF_3V0 = E_AHI_VBOREF_3V0, // 3.0V } VBOREF; static void configure(VBOREF vboref, bool reset, bool svm, bool falling, bool rising) { vAHI_BrownOutConfigure(vboref, reset, svm, falling, rising); } static bool status(void) { return bAHI_BrownOutStatus(); } static bool hasResetEvent(void) { return bAHI_BrownOutEventResetStatus(); } typedef enum { STATUS_FEM = E_AHI_SYSCTRL_VFEM_MASK, STATUS_REM = E_AHI_SYSCTRL_VREM_MASK, } STATUS; static STATUS polling(void) { return (STATUS)u32AHI_BrownOutPoll(); } }; |
次回は、PulsCounterの予定。
【関連投稿】
NXP JN516X (TWELITE) をプログラミングする(開発環境の構築)
NXP JN516X (TWELITE) をプログラミングする(メイン・ルーチン)
NXP JN516X (TWELITE) をプログラミングする(TICKTIMER)
NXP JN516X (TWELITE) をプログラミングする(UART)
NXP JN516X (TWELITE) をプログラミングする(SYSTEM)
NXP JN516X (TWELITE) をプログラミングする(GPIO)
NXP JN516X (TWELITE) をプログラミングする(TIMER)
NXP JN516X (TWELITE) をプログラミングする(ALARM)
NXP JN516X (TWELITE) をプログラミングする(WAKETIMER)
NXP JN516X (TWELITE) をプログラミングする(WATCHDOG)
NXP JN516X (TWELITE) をプログラミングする(I2C)
NXP JN516X (TWELITE) をプログラミングする(SPI)
NXP JN516X (TWELITE) をプログラミングする(ADC)
NXP JN516X (TWELITE) をプログラミングする(COMPARATOR)
NXP JN516X (TWELITE) をプログラミングする(CLOCK)
NXP JN516X (TWELITE) をプログラミングする(BROWNOUT)
NXP JN516X (TWELITE) をプログラミングする(PULSCOUNTER)
NXP JN516X (TWELITE) をプログラミングする(INFRARED)
NXP JN516X (TWELITE) をプログラミングする(RANDOM-GENERATOR)
NXP JN516X (TWELITE) をプログラミングする(FLASH)
NXP JN516X (TWELITE) をプログラミングする(EEPROM)
NXP JN516X (TWELITE) をプログラミングする(WPAN)
NXP JN516X (TWELITE) をプログラミングする(Eclipse-CDT+MWSTAGE)
NXP JN516X (TWELITE) をプログラミングする(乗算と除算)
NXP JN516X (TWELITE) をプログラミングする(マルチタスク)
NXP JN516X (TWELITE) をプログラミングする(フラッシュ・プログラマー)
NXP JN516X (TWELITE) をプログラミングする(OTA UPDATE)
NXP JN516X (TWELITE) をプログラミングする(TWELITE CUE/MC3630)
NXP JN516X (TWELITE) をプログラミングする(LED)
NXP JN516X (TWELITE) をプログラミングする(AES)
NXP JN516X (TWELITE) をプログラミングする(Downloads)