STM32L010とMCP3425で0から2.048000Vまで62uV単位をシリアル出力(MCP3425A0T-E/CH 16bitADC)(電圧)


STM32L010用に軽量コンパクト

xNJL5513Rの実験で必要になったために開発
x工夫いろいろ mbedのリビジョンは125
xRawSerialを使用
x すべては、容量削減(勝利?)のために ジ〇クジオン

構成
STM32L010F4P6 I-15689
MCP3425A0T-E/CH I-07638

1.SCLとSDAを接続、プルアップも忘れずに
2.電源の接続
3.下記のソースコードを書き込む
4.コンパイル実行で表示されたら終了
5.おわり


#include "mbed.h"

//10の割り算 0から1028までは、正しい。主に0から999
#define DVI10(n) ((n*205)>>11)

//16ビットadcの4ビットの変換テーブル
#define ADC4BIT { 0   , 62 ,125 ,187 ,250 ,312 ,375 ,437 ,500 ,562 ,625 ,687 ,750 ,812 ,875 ,937 }

#define ADDR        (0xD0)   //  address

//I2C i2c(I2C_SDA, I2C_SCL); //767
//I2C i2c(dp5, dp27); //1114
I2C i2c(PA_10, PA_9); //010

//Serial pc(USBTX, USBRX); // tx, rx
//Serial pc(SERIAL_TX, SERIAL_RX); //767
//Serial pc(PA_2, PA_3); //010
//Serial pc(PA_9, PA_10); //010
RawSerial pc(PA_2, PA_3); //010

char    data_read[8];   //i2cバッファー

char ch_hex_a_b[5];
char *ch_hex_a(int l_num)
{
    int a,b,c;

    b=DVI10(l_num);
    c=l_num-(b*10);
    a=DVI10(b);
    b=b-(a*10);

    ch_hex_a_b[0] = '0' + a;
    ch_hex_a_b[1] = '0' + b;
    ch_hex_a_b[2] = '0' + c;
    ch_hex_a_b[3] = 0;

    return(ch_hex_a_b);
}//ch_hex_a

//文字列の表示
int pc_printf(char *str1) {

    //文字の中身がゼロか
    while(*str1){

        //一文字出力
        pc.putc(*str1 ++);

    } //while

    //戻り値
    return(0);
}//pc_printf

int ii;     //ループカウンタ

int main()
{
    //pc_printf("\r\n-767-\r\n"); //767

    //MCP3425の初期化
    i2c.write(ADDR, "\230", 1); //16bit 15sps PGA x1

    int s;   //101

    short bit4[]=ADC4BIT;

    while (1) {

        //データの読み込み
        i2c.read(ADDR | 1, data_read, 2);

        s = (data_read[0] * 256 ) + data_read[1];
        //s = (65536/2)-1; debug

ii=(s >> 4);
if     ( ii >= 2000 ) { ii = ii - 2000; pc_printf("2.");    }
else if( ii >= 1000 ) { ii = ii - 1000; pc_printf("1.");    }
else                  {                 pc_printf("0.");    }

        //pc.printf(" o=%s\r\n",ch_hex_a( ii )                ); //767
        pc_printf( ch_hex_a( ii ) );

        //pc.printf(" t=%s\r\n",ch_hex_a( (bit4[ s & 0xf ]) ) ); //767
        pc_printf( ch_hex_a( ( (int)bit4[ s & 0xf ])) );

        pc_printf( "\r\n" );

        //1秒の待ち
        wait_ms(1000);
    }//while

}//main

//容量削減
void error(const char* format, ...){}