Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: F446_DSP_Oscilloscope Demo_DSP_ADDA_Dual TrG_Oscilloscope
Revision 3:a3148d75c1ea, committed 2021-06-29
- Comitter:
- MikamiUitOpen
- Date:
- Tue Jun 29 00:58:39 2021 +0000
- Parent:
- 2:91765f32ab2c
- Commit message:
- 4
Changed in this revision
| DSP_AdcDualIntr.hpp | Show annotated file Show diff for this revision Revisions of this file | 
--- a/DSP_AdcDualIntr.hpp	Sat Nov 07 02:12:49 2020 +0000
+++ b/DSP_AdcDualIntr.hpp	Tue Jun 29 00:58:39 2021 +0000
@@ -2,7 +2,7 @@
 //  STM32F446 内蔵 ADC を割り込み方式で使うための派生クラス
 //      基底クラス: DspAdcDualBase
 //
-//  2020/09/23, Copyright (c) 2020 MIKAMI, Naoki
+//  2021/06/29, Copyright (c) 2021 MIKAMI, Naoki
 //-------------------------------------------------------------
 
 #include "DSP_AdcDualBase.hpp"
@@ -41,10 +41,10 @@
         }
 
         // ADC 割込みを有効にする
-        void EnableAdcIntr() { NVIC_EnableIRQ(ADC_IRQn); }
+        void EnableIntr() { NVIC_EnableIRQ(ADC_IRQn); }
 
         // ADC 割込みを無効にする
-        void DisableAdcIntr() { NVIC_DisableIRQ(ADC_IRQn); }
+        void DisableIntr() { NVIC_DisableIRQ(ADC_IRQn); }
 
 private:
         // コピー・コンストラクタ,代入演算子の禁止のため