今晚又写了一个MAX7219的小程序,开发环境是KEIL。代码:
#include "gpio.h"
/******************************************************************************
* Local pre-processor symbols/macros ('#define')
******************************************************************************/
/******************************************************************************
* Global variable definitions (declared in header file with 'extern')
******************************************************************************/
#define uchar unsigned char
#define uint unsigned int
/******************************************************************************
* Local type definitions ('typedef')
******************************************************************************/
/******************************************************************************
* Local function prototypes ('static')
******************************************************************************/
/******************************************************************************
* Local variable definitions ('static') *
******************************************************************************/
/******************************************************************************
* Local pre-processor symbols/macros ('#define')
******************************************************************************/
#define CLK_0 Gpio_ClrIO(GpioPortB, GpioPin5)
#define CLK_1 Gpio_SetIO(GpioPortB, GpioPin5)
#define LOAD_0 Gpio_ClrIO(GpioPortB, GpioPin7)
#define LOAD_1 Gpio_SetIO(GpioPortB, GpioPin7)
#define DIN_0 Gpio_ClrIO(GpioPortB, GpioPin8)
#define DIN_1 Gpio_SetIO(GpioPortB, GpioPin8)
#define NoOp 0x00 //空操作寄存器
#define Digit0 0x01 // 数码管1寄存器
#define Digit1 0x02 // 数码管2寄存器
#define Digit2 0x03 // 数码管3寄存器
#define Digit3 0x04 // 数码管4寄存器
#define Digit4 0x05 // 数码管5寄存器
#define Digit5 0x06 // 数码管6寄存器
#define Digit6 0x07 // 数码管7寄存器
#define Digit7 0x08 // 数码管8寄存器
#define DecodeMode 0x09 // 译码模式寄存器
#define Intensity 0x0a // 亮度寄存器
#define ScanLimit 0x0b // 扫描位数寄存器
#define ShutDown 0x0c // 低功耗模式寄存器
#define DisplayTest 0x0f // 显示测试寄存器
#define ShutdownMode 0x00 // 低功耗方式
#define NormalOperation 0x01 // 正常操作方式
#define ScanDigit 0x07 // 扫描位数设置,显示8位数码管
#define DecodeDigit 0xff // 译码设置,8位均为BCD码
#define IntensityGrade 0x0a // 亮度级别设置
#define TestMode 0x01 // 显示测试模式
#define TextEnd 0x00 // 显示测试结束,恢复正常工作模式
/*****************************************************************************
* Function implementation - global ('extern') and local ('static')
******************************************************************************/
uchar DisBuffer[8]={0,0,0,0,0,0,0,0}; // 显示缓存区
//******************延时t毫秒**************************************
void delay(uint t)
{
uint i;
while(t--)
{
/* 对于12M时钟,约延时1ms */
for (i=0;i<125;i++)
{}
}
}
//*************向MAX7219写入字节(8位)********************
void SendChar (uchar ch)
{
uchar i,temp;
delay(1);
for (i=0;i<8;i++)
{
temp=ch&0x80;
ch=ch<<1;
if(temp)
{
DIN_1;
CLK_0;
CLK_1;
}
else
{
DIN_0;
CLK_0;
CLK_1;
}
}
}
//**************向MAX7219写入字(16位)*****************************
void WriteWord (uchar addr,uchar num)
{
LOAD_0;
delay(1);
SendChar(addr);
delay(1);
SendChar(num);
delay(1);
LOAD_1; // 锁存进相应寄存器
}
//*********************** MAX7219初始化 ******************
void InitDisplay (void)
{
WriteWord (ScanLimit,ScanDigit); // 设置扫描界限
WriteWord (DecodeMode,DecodeDigit); // 设置译码模式
WriteWord (Intensity,IntensityGrade); // 设置亮度
WriteWord (ShutDown,NormalOperation); // 设置为正常工作模式
}
/**
******************************************************************************
** \brief Main function of project
**
** \return uint32_t return value, if needed
**
** This sample
**
******************************************************************************/
int32_t main(void)
{
stc_gpio_config_t pstcGpioCfg;
///< 打开GPIO外设时钟门控
Sysctrl_SetPeripheralGate(SysctrlPeripheralGpio, TRUE);
///< 端口方向配置->输出
pstcGpioCfg.enDir = GpioDirOut;
///< 端口驱动能力配置->高驱动能力
pstcGpioCfg.enDrv = GpioDrvH;
///< 端口上下拉配置->无上下拉
pstcGpioCfg.enPuPd = GpioNoPuPd;
///< 端口开漏输出配置->开漏输出关闭
pstcGpioCfg.enOD = GpioOdDisable;
///< 端口输入/输出值寄存器总线控制模式配置->AHB
pstcGpioCfg.enCtrlMode = GpioAHB;
///< GPIO IO PD05初始化(PD05在STK上外接LED)
Gpio_Init(GpioPortD, GpioPin5, &pstcGpioCfg);
Gpio_Init(GpioPortB, GpioPin5, &pstcGpioCfg);
Gpio_Init(GpioPortB, GpioPin7, &pstcGpioCfg);
Gpio_Init(GpioPortB, GpioPin8, &pstcGpioCfg);
InitDisplay (); // MAX7219初始化
WriteWord(DisplayTest,TestMode); // 开始显示测试,点亮所有LED
delay(1500); // 延时约1.5s
WriteWord (DisplayTest,TextEnd); // 退出显示测试模式
WriteWord (Digit0,0);
WriteWord (Digit1,1);
WriteWord (Digit2,2);
WriteWord (Digit3,3);
while(1)
{
。。。。。。。。。。。。。。。。。。。。。。。。。。
效果图:
另,这个MAX7219小板子是我自己做着玩的。
原理图如下:
|