コンパレータは、簡単なので説明しなくてもいい?かな。(-_-;)
ちなみにBANDGAP(Typ1.235V)とは内部リファレンス電圧のこと。
【ライブラリ】
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
/* comparator.h - Comparator 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> #include "sysctrl.h" #include "analog.h" #include "gpio.h" /* I/O Ports COMP1P: DIO16 COMP1M: DIO17 Input Signal Reference Signal Enumeration (u8SignalSelect) ------------------------------------------------------------ COMP1P COMP1M E_AHI_COMP_SEL_EXT COMP1P Vref E_AHI_COMP_SEL_BANDGAP COMP1M COMP1P E_AHI_COMP_SEL_EXT_INVERSE COMP1M Vref E_AHI_COMP_SEL_BANDGAP_INVERSE */ class Comparator { public: // u8Hysteresis Hysteresis setting (controllable from 0 to 40mV) typedef enum { HYST_0MV = E_AHI_COMP_HYSTERESIS_0MV, // 0mV HYST_10MV = E_AHI_COMP_HYSTERESIS_10MV, // 10mV HYST_20MV = E_AHI_COMP_HYSTERESIS_20MV, // 20mV HYST_40MV = E_AHI_COMP_HYSTERESIS_40MV, // 40mV } HYST; // u8SignalSelect Selection of input and reference signals (see table above): typedef enum { SEL_EXT = E_AHI_COMP_SEL_EXT, SEL_BANDGAP = E_AHI_COMP_SEL_BANDGAP, SEL_EXT_INVERSE = E_AHI_COMP_SEL_EXT_INVERSE, SEL_BANDGAP_INVERSE = E_AHI_COMP_SEL_BANDGAP_INVERSE, } SEL; static void begin(SEL sel, HYST hyst = HYST_20MV, PR_HWINT_APPCALLBACK prCompCallback = 0, bool rising = false) { switch (sel) { case SEL_EXT: case SEL_EXT_INVERSE: Gpio::pinMode(Gpio::DIO16, Gpio::INPUT); Gpio::pinMode(Gpio::DIO17, Gpio::INPUT); break; case SEL_BANDGAP: case SEL_BANDGAP_INVERSE: Analog::configure(); Gpio::pinMode(sel == SEL_BANDGAP ? Gpio::DIO16 : Gpio::DIO17, Gpio::INPUT); break; } SysCtrl::interrupt(SysCtrl::INTSRC_COMP0, prCompCallback); vAHI_ComparatorIntEnable(E_AHI_AP_COMPARATOR_1, prCompCallback != 0, rising); vAHI_ComparatorEnable(E_AHI_AP_COMPARATOR_1, hyst, sel); } static void end(void) { vAHI_ComparatorDisable(E_AHI_AP_COMPARATOR_1); } static void lowPowerMode(bool enable) { vAHI_ComparatorLowPowerMode(enable); } static bool status(void) { return (u8AHI_ComparatorStatus() & E_AHI_AP_COMPARATOR_MASK_1) != 0; } }; |
次回は、Clockの予定。
【関連投稿】
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)