msp430驅動MCP4017數位電位器

2020-09-21 13:00:28

msp430驅動MCP4017數位電位器驅動偵錯記錄

最近才學習msp430並接觸mcp4017數位電位器,msp430相關資料有點少,附上我的偵錯程式碼供各位參考和斧正

注:偵錯MCP4017驅動成功了,寫操作沒任何問題,已經經過測試,讀操作不知道為什麼一直沒成功,希望大佬指點。

宏定義部分

/***************************模擬IIC預定義***********************************/
/*******************引腳輸出宏定義*********/
#define IIC_SDA_H P3OUT|=0x0004      //BIT2  P3.2為SDA輸出高電平
#define IIC_SDA_L P3OUT&=~0x0004     //BIT2  P3.2為SDA輸出低電平
#define IIC_SDA   P3IN & 0x0004 ? 1 : 0
#define IIC_SCL_H P3OUT|=0x0002      //BIT1  P3.1為SCL輸出高電平
#define IIC_SCL_L P3OUT&=~0x0002      //BIT1  P3.1為SCL輸出低電平
/*******************選擇SDA的資料方向*********/
#define IIC_SDA_Input()     P3DIR&=~0x0004
#define IIC_SDA_Output()    P3DIR|=0x0004
#define IIC_SCL_Output()    P3DIR|=0x0002
/*******************************延時函數預定義*********************************/
#define CPU_F ((double)8000000)                                          //內部延時函數所需要的時脈頻率大小
#define delay_ms(x) __delay_cycles((long)(CPU_F*(double)x/1000.0))
#define delay_us(x) __delay_cycles((long)(CPU_F*(double)x/1000000.0))

IIC子函數

/***************************************IIC*********************************/

/********IIC初始化************/

void IIC_Init(void)
{   IIC_SCL_Output();
    IIC_SDA_Output();//SDA設定為輸出模式
    IIC_SDA_H;       //SDA拉高
    IIC_SCL_H;        //SCL拉高
}

/********IIC通訊開始************/

void IIC_Start(void)
{
    IIC_SDA_Output();  // 設定為輸出模式
    IIC_SCL_H;
    delay_us(20);
    IIC_SDA_H;
    delay_us(20);
    IIC_SDA_L;
    delay_us(20);
    IIC_SCL_L;
    delay_us(20);
}
/********IIC通訊結束************/
void IIC_Stop(void)
{
    IIC_SDA_Output();  // 設定為輸出模式
    IIC_SCL_L;
    delay_us(1);
    IIC_SDA_L;
    delay_us(2);
    IIC_SCL_H;
    delay_us(10);
    IIC_SDA_H;
    delay_us(10);
}
/********IIC從裝置應答************/
void IIC_Wait_ACK(void)
{
    uint8_t i = 0;
    IIC_SDA_Input();            //   SDA 設定為輸入
    IIC_SCL_H;
    delay_us(1);
    while ((IIC_SDA) && i < 240)
        i++;
    IIC_SCL_L;
    IIC_SDA_Output();           //   設定成輸出
    delay_us(2);
}
/********主裝置非應答************/
void IIC_NACK(void)
{
    IIC_SCL_H;
    delay_us(1);
    IIC_SDA_H;
    delay_us(1);
    IIC_SCL_L;
    delay_us(2);
}
/********IIC傳送一個位元組************/
void IIC_WriteByte(uint8_t byte)
{
    uint8_t len = 0;
    IIC_SCL_L;
    delay_us(10);
    for (len = 0; len < 8; len++)
    {
        if (byte & 0x80)
        {
            IIC_SDA_H;
        }
        else
        {
            IIC_SDA_L;
        }
        delay_us(10);
        IIC_SCL_H;
        byte <<= 1;
        delay_us(10);
        IIC_SCL_L;
        delay_us(10);
    }
   IIC_SDA_H;
    delay_us(1);
    IIC_SCL_L;
    delay_us(2);
}
/*********************************************
功  能:向從裝置接收一個位元組
返回值:Byte--讀取到的位元組
**********************************************/
uint8_t IIC_ReadByte(void)
{
    uint8_t len = 0, Byte = 0;
    IIC_SDA_H;
    IIC_SDA_Input();            // SDA 設定為輸入
    for (len = 0; len < 8; len++)
    {
        IIC_SCL_L;
        delay_us(1);
        IIC_SCL_H;
        delay_us(1);
        Byte <<= 1;
        Byte |= (IIC_SDA);
        delay_us(1);
        IIC_SCL_L;
        delay_us(1);
    }
    return Byte;
}
/*********************************************
函數名:IIC_ReceiveData
功  能:向從裝置接收一個位元組,並帶應答
**********************************************/
uint8_t IIC_ReceiveData(uint8_t Ack)
{
    uint8_t i = 0, ReadValue = 0;
    IIC_SDA_Output();   //   設定成輸出模式
    IIC_SDA_H;
    IIC_SDA_Input();    //   設定為輸入模式
    IIC_SCL_L;

    for (i = 0; i < 8; i++)
    {
        IIC_SCL_H;
        delay_us(1);
        ReadValue <<= 1;
        if ((IIC_SDA )!= 0)
        {
            ReadValue |= 0x01;
        }
        delay_us(1);
        IIC_SCL_L;
        delay_us(2);
    }
    if (Ack)
    {
        IIC_SCL_L;
        IIC_SDA_Output();   //   設定成輸出模式
        IIC_SDA_L;
        delay_us(2);
        IIC_SCL_H;
        delay_us(1);
        IIC_SCL_L;
    }
    else
    {
        IIC_SCL_L;
        IIC_SDA_Output();   //   設定成輸出模式
        IIC_SDA_H;
        delay_us(2);
        IIC_SCL_H;
        delay_us(1);
        IIC_SCL_L;
    }
    return ReadValue;
}

MCP4017子函數

/******************************MCP4017*****************************************/

void MCP4017_Init(void)
{
    IIC_Init();          // I2C初始化
}

/*********************************************
函數名:MCP4017_Write_DATA
功  能:寫 地址 資料
形  參:addr 地址0x5E   dat 資料
**********************************************/
void MCP4017_Write_DATA(const uint8_t addr, const uint8_t DATA)
{   IIC_Init();
    IIC_Start();                 // 啟動
    IIC_WriteByte(addr); // 裝置地址
    IIC_Wait_ACK();              // 等待資料響應
//    IIC_WriteByte(addr);         // 傳送暫存器地址
//    IIC_Wait_ACK();              // 等待資料響應
    IIC_WriteByte(DATA);         // 傳送資料
    IIC_Wait_ACK();              // 等待資料響應
    IIC_Stop();                  // 停止
}
/*********************************************
函數名:PAJ7620U2_Read_DATA
功  能:讀地址資料
形  參:addr--暫存器地址_0x5E
**********************************************/
uint8_t MCP4017_Read_DATA(const uint8_t addr)
{
    uint8_t GET_DATA = 0;
//    IIC_Start();                     // 啟動
//    IIC_WriteByte(MCP4017.ADDR);     // 傳送地址
//    IIC_Wait_ACK();                  // 等待資料響應
//    IIC_WriteByte(addr);             // 傳送地址
//    IIC_Wait_ACK();                  // 等待資料響應

    IIC_Start();                     // 啟動
    IIC_WriteByte(addr | 1); // 傳送地址
    IIC_Wait_ACK();                  // 等待資料響應

    GET_DATA = IIC_ReadByte();       // 獲取資料
    IIC_Wait_ACK();                  // 等待資料響應

    IIC_Stop();                      // 停止
    return GET_DATA;
}

參考的stm32程式碼