- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
sopc课程报告
SOPC课程报告
——跑马灯实验
一、选题目标
1. 进一步了解简单设备及其编程
2. 熟悉相关I/O操作函数
3. 了解中断原理及中断函数编写方法
二、选题内容
使用2个按键作为输入,8位LED灯作为输出。
按下1号键LED灯自左到右依次灭;
按下2号键LED灯自右到左依次灭;
三、原理与步骤
1. 在SOPC中加入各元件并设置好各地址。
2. 加入引脚锁定文件,绘制顶层原理图。
#Setup.tcl
#Setup pin setting
set_global_assignment -name RESERVE_ALL_UNUSED_PINS AS INPUT TRI-STATED
set_global_assignment -name ENABLE_INIT_DONE_OUTPUT OFF
set_location_assignment PIN_B13 -to clk
set_location_assignment PIN_C5 -to reset_n
set_location_assignment PIN_AC10 -to out_port_from_the_led_pio[0]
set_location_assignment PIN_W11 -to out_port_from_the_led_pio[1]
set_location_assignment PIN_W12 -to out_port_from_the_led_pio[2]
set_location_assignment PIN_AE8 -to out_port_from_the_led_pio[3]
set_location_assignment PIN_AF8 -to out_port_from_the_led_pio[4]
set_location_assignment PIN_AE7 -to out_port_from_the_led_pio[5]
set_location_assignment PIN_AF7 -to out_port_from_the_led_pio[6]
set_location_assignment PIN_AA11 -to out_port_from_the_led_pio[7]
set_location_assignment PIN_Y11 -to in_port_to_the_key_pio[0]
set_location_assignment PIN_AA10 -to in_port_to_the_key_pio[1]
3. 在NIOS II IDE下,根据刚生成的硬件建立一个空工程文件。
4. 然后编写软件代码如下:
#include alt_types.h
#include stdio.h
#include system.h
#include sys/alt_irq.h
#include altera_avalon_pio_regs.h
#include stdlib.h
#include io.h
volatile int edge_capture;
alt_u8 flag;
static void handle_key_interrupt(void* context, alt_u32 id)
{
/* Cast context to edge_captures type. It is important that this be declared volatile to avoid unwanted compiler optimization.
*/
/* 将edge_capture与*context对应起来 */
/* 设置为volatile 是为了避免下面的指令被编译器给优化掉 */
volatile int* edge_capture_ptr = (volatile int*)context;
/* Store the value in the Buttons edge capture register in *context. */
/* 读取按键中断边沿捕捉寄存器中的值 - *context (这里就等于*edge_capture_ptr) */
*edge_capture_ptr = IORD_ALTERA_AVALON_PIO_EDGE_CAP(KEY_PIO_BASE);
/* Reset the Buttons edge capture register. */
/* 清0 边沿捕捉寄存器中的值 */
IOWR_ALTERA_AVALON_PI
文档评论(0)