此篇开始正式对套件进行评测,先拿官方提供的参考设计练练手,在上一篇博文中给出了参考设计链接:https://cloud.altera.com/devstore/board/max-10-fpga-evaluation-kit/
在此页面中,有如下几个设计▼
适用于QuartusII 14.1版本的设计如下:
l ADC /LCD Controller Design Example :ADC/LCD控制器设计
l Custom Instruction for NIOS II Processor :NIOS II处理器自定义指令设计
l Dualboot Design Example :双启动设计
l MAX 10 Evaluation Kit Baseline Design :基本参考设计
l On-die Temperature Sensor Design Example :温度传感器设计
l On-die Temperature Sensor/LCD Design Example :温度传感器/LCD设计
l PWM Design :脉冲调制设计
l Restore Factory Settings LED Flash :出厂自带的LED闪烁设计
l Stepper Motor Controller (AN 488) :步进电机控制器
打开其中一个设计,如Restore Factory Settings LED Flash ▼
点击Download可下载此参考设计,下载得到LED_Flash.par文件,此文件为设计模板,可导入QuartusII 14.1中:
▼打开QuartusII,点击菜单栏File中Open Project选项
▼进入新建工程向导,设置工程路径
▼在工程类型中,选择工程模板 Project Template
▼在可用设计模板列表中并没有下载的LED_FALSH参考设计,需要先添加,点击红框中Install the design templates
▼选择LED_FALSH.par文件,并设置工程路径
▼添加完成后,Restore Factory Settings LED Flash就出现在可用设计模板列表中了。
▼点击Finish,导入LED_FLASH设计完成
▼参考设计中包含的源代码,LED_Flash_all.v包含功能代码,LED_Flash.sdc包含时序约束
▼打开LED_Flash_all.v,分析代码,简单的时钟分频,功能是LED1~LED5每秒亮、灭一次
module LED_Flash_all(
input clk,
output LED1,
output LED2,
output LED3,
output LED4,
output LED5
);
reg[15:0] div_cntr1;
reg[9:0] div_cntr2;
reg dec_cntr;
reg half_sec_pulse;
initial begin
div_cntr1 = 0;
div_cntr2 = 0;
dec_cntr = 0;
end
always@(posedge clk)
begin
div_cntr1 <= div_cntr1 + 1;
if (div_cntr1 == 0)
if (div_cntr2 == 762)
begin
div_cntr2 <= 0;
half_sec_pulse <= 1;
end
else
div_cntr2 <= div_cntr2 + 1;
else
half_sec_pulse <= 0;
if (half_sec_pulse == 1)
dec_cntr <= !dec_cntr;
end
assign LED1 = dec_cntr ;
assign LED2 = dec_cntr ;
assign LED3 = dec_cntr ;
assign LED4 = dec_cntr;
assign LED5 = dec_cntr ;
endmodule
▼工程中已包含引脚分配
▼工程编译后报告,无报错
▼MAX10评估板与USB Blaster下载线正确连接后并上电,打开Programmer,点击Auto Detect自动识别JTAG链上的器件,然后添加LED_FLASH.sof文件,点击Start开始下载,下载成功后会在进度条中显示100%(Successful)。
以上以LED_FALSH参考设计为例,对MAX10评估板整套开发系统做了演示。
文章评论(0条评论)
登录后参与讨论