Class library for internal ADC and DAC connected by SPI. ADC is triggered by TIM2. This library support clock generator using TIM3 for switched-capacitor filter to smooth output signal of DAC. This library includes derivative class to support interrupt occured in end of AD conversion. Slave select of SPI for DAC is generated using TIM4. Validated for ST Nucleo F401RE, F411RE. New version. 内蔵 ADC と,SPI 接続の DAC のためのクラスライブラリ.ADC の変換開始トリガは TIM2 で発生.DAC の出力信号を平滑化するためのスイッチトキャパシタフィルタ用のクロックは TIM3 を使用.DAC の SPI 用スレーブ選択信号は TIM4 で発生.ST Nucleo F401RE,F411RE で動作を確認.新バージョン

Dependents:   UIT2_MovingAverage UIT2_AllpassReverb UIT2_CombReverb UIT2_FIR_LPF_Symmetry ... more

DAC_MCP4922Dual.hpp

Committer:
MikamiUitOpen
Date:
2015-02-02
Revision:
21:3731753ebf24
Parent:
19:900efc6796d4

File content as of revision 21:3731753ebf24:

//------------------------------------------------------
// Class for dual channel DAC in MCP4922
// 2015/02/03, Copyright (c) 2015 MIKAMI, Naoki
//------------------------------------------------------

#ifndef DAC_MCP4922_DUAL_HPP
#define DAC_MCP4922_DUAL_HPP

#include "DAC_MCP4922.hpp"

namespace Mikami

{
    class DAC_MCP4922Dual : public DAC_MCP4922
    {
    public:
        DAC_MCP4922Dual(
            PinName mosi = SPI_MOSI,    // D11
            PinName sclk = SPI_SCK,     // D13
            PinName cs   = SPI_CS,      // D10
            PinName ldac = SPI_MISO)    // D12
                : DAC_MCP4922(DAC_A, mosi, sclk, cs, ldac) {}


        void Write(float valA, float valB)
        {
            SetCR(DAC_A);
            DAC_MCP4922::Write(valA);   // Write to DAC A
            SetCR(DAC_B);
            DAC_MCP4922::Write(valB);   // Write to DAC B
            Wait();
            while (IsBusy()) {}
            Ldac();
        }

        void Write(uint16_t valA, uint16_t valB)
        {
            SetCR(DAC_A);
            DAC_MCP4922::Write(valA);   // Write to DAC A
            SetCR(DAC_B);
            DAC_MCP4922::Write(valB);   // Write to DAC B
            Wait();
            while (IsBusy()) {}
            Ldac();
        }
    };
}
#endif  // DAC_MCP4922_DUAL_HPP