CQエレクトロニクス・セミナ「実習・マイコンを動かしながら学ぶディジタル・フィルタ」で使うプログラムを,入力として STM32F746 の内蔵 ADC を使うように変更したもの. http://seminar.cqpub.co.jp/ccm/ES18-0020

Dependencies:   mbed Array_Matrix BSP_DISCO_F746NG LCD_DISCO_F746NG TS_DISCO_F746NG

Revision:
2:dd48e1e59daa
Parent:
1:501a83a5ee9d
--- a/MyFiles/NumericUpDown.hpp	Wed Nov 08 11:43:52 2017 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,60 +0,0 @@
-//-----------------------------------------------------------
-//  NumericUpDown class
-//      指定された桁を up/down する GUI 部品
-//      6 桁まで可能
-//
-//  2017/08/21, Copyright (c) 2017 MIKAMI, Naoki
-//-----------------------------------------------------------
-
-#ifndef NUMERIC_UPDOWN_HPP
-#define NUMERIC_UPDOWN_HPP
-
-#include "F746_GUI.hpp"
-#include "DelayedEnabler.hpp"
-
-namespace Mikami
-{
-    class NumericUpDown
-    {
-    public:
-        // digit    表示する桁数
-        // initVal  最初に表示する数値
-        NumericUpDown(uint16_t digit, uint16_t x0, uint16_t y0,
-                      uint32_t initVal, uint32_t max, uint32_t min,
-                      string unit = "", float delay = 0.2f);
-
-        // Up, Down をタッチした場合は対応する数値を +1 または -1 する
-        bool Touched();
-
-        // 引数の数値を Label に表示する
-        void Set(uint32_t frq);
-
-        // Label に表示されている値を数値データとして取り出す
-        uint32_t Get() { return value_; }
-
-    private:
-        const int DIGIT_;       // 桁数
-        const int X0_, Y0_;
-        const uint32_t MAX_;    // 最大値
-        const uint32_t MIN_;    // 最小値
-        const Array<uint32_t> POW10_;
-        const static uint16_t XW_ = 45;
-        const static int16_t SIZE_ = 6;
-
-        static Point ptU_[3], ptD_[3];
-     
-        char fmt_[5];
-        int numUd_;     // 一つ前にタッチしたボタンの番号
-        uint32_t value_;
-
-        DelayedEnabler delay_;
-        Array<Label *> labels_;
-        ButtonGroup *ud_;
-        LCD_DISCO_F746NG &lcd_;
-
-        // 数値の up, down に使う三角形の描画
-        void UpDownSymbol(uint16_t x, uint16_t y, int k);
-    };
-}
-#endif  // NUMERIC_UPDOWN_HPP
-