99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

EEEN3007J代寫、代做Embedded Systems

時間:2024-05-03  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



1 EEEN3007J
Accelerometer D
Embedded Systems
ata Visualisation
(SoC Integration and Firmware Development)
In this assignment, you will build a complete embedded system on an FPGA, with an ARM
Cortex-M0 processor, connected to various peripheral blocks using an AHB-Lite bus, running
software written mostly in C. All the peripheral blocks are provided, but you will probably need
to integrate them by writing any required “glue logic”. You will also have to integrate the blocks
that are provided into the system, making the necessary connections to the bus and other signals.
The eventual goal is to collect information from an accelerometer, available on the Digilent
Nexys-4 FPGA board, and display it in some useful way.
Project Setup
Download the DES_SoC.zip file on Brightspace, and unzip it into the correct folder on the lab
computer : Documents\EmbeddedSystems\???day. Take care to use the folder names when
extracting the files – this operation builds a directory structure for the entire assignment.
Verilog files are in DES_SoC\Hardware\Source and DES_SoC\Hardware \Testbench, program
files are in DES_SoC\Software, documents and data sheets are in DES_SoC\Documents.
Start the Xilinx Vivado software, and open the project DES_M0_SoC – you will find the project
file in the DES_SoC\Hardware folder.
When the project opens, you should see the Verilog modules arranged in the appropriate hierarchy
in the Project manager window. Modules that are not yet included in the design will be shown
separately.
Block Diagram
The top-level block diagram of the test system that you will build is shown below. Many of the
blocks are provided – these are listed with brief descriptions below. More detailed information
on some blocks in in the DES_SoC\Documents folder.
AHBliteTop.v
This is the top-level module, in which all the other modules should be instantiated. It is provided
in incomplete form – the data memory, GPIO and UART peripherals are missing. A simple
testbench is provided, which provides the clock and reset signals needed to simulate the system.
AHB-Lite Bus
Clock
Gen.
Reset
Gen.
Cortex-M0DS
load facility
50 ROM
MHz
UART
GPIO
Status Ind.
RAM
16 16
2
clock_gen.v
Clock generator – provides 50 MHz clock for all the hardware and the AHB-Lite bus, using the
100 MHz clock input from the oscillator on the Nexys-4 board.
reset_gen.v
Reset generator. Provides hardware reset signal at power on or if the CPU RESET button is
pressed, holds this signal until the clock generator is running. Also provides a separate reset for
the processor and AHB-Lite bus, which conforms to the Cortex-M0 reset requirements, and can
be requested by software.
status_ind.v
Status indicator – uses two multi-colour LEDS on the Nexys-4 board to display status signals.
CORTEXM0DS.v
This is a wrapper for the Cortex-M0 DesignStart processor, provided by ARM. It makes the CPU
registers visible in simulation. This module has been synthesised already, to save time.
AHBDCD.v
Address decoder, defines the address map. It selects the appropriate slave on the AHB-Lite bus
in response to the address input. It also controls the multiplexer block, below. You will have to
modify the decoder block as you add more slaves to the system.
AHBMUX.v
Multiplexers for signals from the slaves. You should not have to modify this block, but you will
have to connect more slave signals to it.
AHBprom.v
Program memory, ** kByte, read-only from the AHB-Lite bus. The memory used is made up of
block RAM components on the FPGA. The memory is configured with the machine code for a
simple test program. However, the memory block includes special hardware (ROM loader) to
allow new program code to be loaded through the serial port after the FPGA has been configured.
See instructions later.
AHBbram.v
Data memory, 16 kByte, read-write, with byte and half-word writes possible. The memory used
is made up of block RAM components on the FPGA.
AHBgpio.v
General-purpose input-output block. Provides two 16-bit output ports and two 16-bit input ports,
with byte writes possible to the output ports. Full details, including RTL diagram, are in a separate
document, in the DES_SoC\Documents folder. A testbench for this block is also provided, which
simulates some AHB transactions.
AHBuart2.v
UART – asynchronous serial interface block. Transmits and receives at 19200 bit/s, in groups of
8 data bits with one start bit, no parity and one stop bit. The transmit and receive paths each have
16-byte buffers or queues, and a status register provides bits to indicate if these are full or empty.
Each of these bits can be enabled to cause an interrupt, by setting appropriate bits in the UART
control register. Full details are in a separate document. A testbench is provided.
Colour LD17 – on the left LD16 – on the right
Blue Processor and AHB bus reset active Processor sleeping (wait for interrupt)
Red Processor lockup ROM loader active (see below)
3
AHBspi.v
SPI – serial peripheral interface block. Transmits and receives data as ** bits using SPI protocol.
The data to be written to the peripheral, and data read from the external peripheral can be read
from the SPI block register locations. An Interrupt is generated by the block, when data is ready
to be read.
Constraints file
Along with all the hardware blocks, a constraint file is provided: Nexys4_Master.xdc. This
defines the pin numbers and signal voltages for all the connections to the FPGA. The signals not
used in the test system are commented out. You will need to modify this file later, to include
more signals.
Block Simulation
In Vivado, select the sim_gpio simulation. Click on Run Simulation and choose a behavioural
simulation.
Expand the simulation timing diagram window, and zoom to fit the entire waveforms. You should
be able to see some AHB transactions being performed by the testbench – writing to registers and
reading from registers in the GPIO block. Examine the Verilog testbench to see what is supposed
to happen. Examine the documentation and the Verilog description for the GPIO block to see
how it works.
Project Part I- System Integration and Testing
The system that you have been given is not complete – some of the slaves are not connected to
the AHB-Lite bus. You need to build a complete system, as shown on page 1, and then run some
test programs on it.
Add RAM block
Edit the top-level module, and add the AHBbram block to the system. Instantiate the block and
connect its ports to the appropriate AHB bus signals. There are wires already defined for its slave
select signal and for its output signals – these wires are already connected to the address decoder
and multiplexer blocks. You need to identify the wires and connect them to the ports on the
AHBbram block.
If you have done this correctly, you should see the RAM block appear in the hierarchy. If you
expand it, you will see a block RAM, which was generated from the IP catalog.
At this stage, you should be able to Open Elaborated Design, and see the block diagram of the
system so far. You will see some warnings about unconnected ports, and you will also see these
on the block diagram – these are for the blocks that you have yet to add.
Add GPIO block
Now add the GPIO block to your system. Instantiate it and connect its bus ports to the bus signals
as before. This time, you will have to create wires for the signals specific to this block.
You will also have to connect the other ports on the block. The test program expects the gpio_out0
port to connect to the LEDs on the Nexys-4 board. However, the ROM loader also uses the LEDs
when it is active, so there is a multiplexer to allow the two blocks to share the LEDs. You should
connect the gpio_out0 port to the multiplexer – the wires are already there.
Connect the switches to port gpio_in0.
Connect the buttons to the least significant bits of gpio_in1, with 0s on the other inputs.
You can check your work by opening the elaborated design again…
4
Add UART block
Next add the UART block. The software uses this block to communicate with the PC.
Its serial transmit and receive ports connect to ports (with different names) of the top-level
module. You also need to connect its interrupt request line to one of the IRQ inputs of the
processor – the software expects this interrupt at IRQ bit 1.
Address decoding
Now modify the address decoder block to position the new slaves at the correct places in the
address map. The address decoder is designed to check only the 8 most significant bits of the
address, so each slave gets a 16 MB range of addresses – far more than it needs.
You should see that the program memory (ROM) is already located at address 0x00000000, and
the data memory (RAM) at 0x20000000. You need to add logic to put the GPIO block at
0x50000000 and the UART block at 0x51000000.
Check the elaborated design again. Note that you can expand any block and see what is inside it
if you wish.
Implementing Your System on FPGA
In Synthesis Settings, set fsm extraction off. Then Run Synthesis. You can select to run it in the
background if you want to get on with other tasks while it is running.
When the synthesis has run, view the synthesis report. You will find many warnings, hidden
among even more information messages. You can also see these warnings on the Messages tab
at the bottom of the Vivado window. You need to check that all of these are acceptable before
you proceed.
Then Run Implementation. This may take some time.
While you are waiting, connect the Nexys-4 board to the PC and switch it on. You should see it
demonstrate some of its features as a self-test.
When Implementation completes, with no warnings, Generate Bitstream. This produces the
.bit file that you need to download to the FPGA to configure it with your design.
HyperTerm
Run HyperTerm – Start menu (download from Brightspace, if you don’t have it in your notebook),
All Programs. On the File menu, open the connection file in the project folder: Nexys4.ht. This
attempts to connect to a device on port 5 – if it fails, you may need to select a different port.
Leave the window open.
If you need to make a new connection, choose a port with a number greater than 3. Configure the
connection for 19200 bit/s, 8 data, no parity, 1 stop bit, no handshake. Save the settings.
Configure FPGA
To configure the FPGA, use the Hardware Manager.
Select Open Target. The first time you do this, you should choose
Open New Target. Accept the defaults, and the Nexys4 board
should be found and identified. The FPGA on the board should also
be identified.
If you do this again, when you click Open Target you should see the
previous FPGA board listed – just select it. If there is more than
one board, the top one is usually the most recently used – there is a label on the back of each
board with the last six digits of the board number.
5
When you have opened the target board, click Program Device, and select the only device offered.
The correct bitstream file will usually be
offered, as shown here. It should have the
name of your top-level module, with
extension .bit. You do not need a
Debug Probes File.
If all is correct, click Program.
Your design should now be on the FPGA, and ready for testing. If you switch off the board, the
configuration will be lost, and you will have to download the .bit file again – Program Device.
There is no need to repeat synthesis and implementation if the design is the same.
Testing
When the FPGA has been configured, press the CPU RESET button. You should see a message
appear in the HyperTerminal window. If you type characters here, they will be echoed back to
you. When you press return, the whole sentence will be repeated, with the letters modified.
The LEDs on the Nexys-4 board should show each character code as it is received. When you
press return, they will flash a pattern that depends on the switch settings. You will also notice the
right-most status LED (LD16) showing blue most of the time – this indicates that the processor
is sleeping, waiting for an interrupt.
Software
Run the uVision4 software. Open the DES_M0_SoC_Basic_Uart project located in
DES_SoC/Software.
Check the project options – on the Target tab, you should see the ROM and RAM areas defined.
Check the path to the .sfr file – it may need to be changed to point to the file on your computer.
Examine the code. This is the program that was already loaded into the program memory in your
system, and is now running on the processor in the FPGA on the Nexys-4 board. You should be
able to understand why the system is behaving as it is.
Modify the program
When you understand the software provided, change it. Make it send a different welcome
message through the serial port, so you will recognise the new version. Modify it so that it reports
the number of characters that you have typed, and also reports the state of the switches as a
number.
Build your new program. You should find an output file called ROMcode.hex in the Software
folder. Examine this – it contains the **-bit words that should be in the program memory.
The first word defines the initial value of the stack pointer. The second is the address of the first
instruction to be executed after reset. The 18th word should be the address of the interrupt handler
for the UART interrupt.
Now download and test your modified program.
Download to program memory
On the Nexys-4 board, press the black pushbutton marked BTNU. While holding this down, press
and release the reset button. Then release BTNU. This activates the ROM loader hardware,
which also keeps the processor in reset. You should see the status indicators showing blue and
red.
In HyperTerm, on the Transfer menu, select Send Text File… Select the ROMcode.hex file –
you will have to change the type of file to “All Files” to see this. Opening the ROMcode.hex file
6
will cause HyperTerm to send the file, byte by byte. The ROM loader should receive it – you
should see the LEDs on the Nexys-4 board displaying a count of the words received.
When the file has been sent, click in the HyperTerm window and press Q on the keyboard. This
tells the ROM loader that the transfer is complete. The status indicators should change as the
processor starts running your program.
Project Part II- System Design
The accelerometer on the Nexys-4 board is an Analog Devices ADXL362. The data sheets for
the accelerometer and for the Nexys-4 board are in the DES_SoC\Documents folder.
Look at the data sheet for the accelerometer. There is no need to read every word at this stage –
you just need to get an overview of what information is available from the accelerometer, and
how you can get access to this information.
Your assignment is vague: to collect information from the accelerometer and display it in some
useful way. You need to decide what information you will collect and how you will display it.
As you have seen in the sample program, you can send information to the PC, to be displayed in
HyperTerm. You can also display information on the line of LEDs on the Nexys-4 board. You
could display information in a more user-friendly way on the 7-segment displays on the board.
You could use the switches on the board to decide which information to display…
Architecture
When you have decided what you want to do, you can start designing a system to do it. First
break the problem into a few large blocks, and think about the information flows between the
blocks. Then design one block at a time – if necessary, divide a block into smaller blocks…
For example, you will have to connect the FPGA to the accelerometer. The accelerometer uses a
SPI interface – it acts as a slave. So your design will need a SPI master interface to communicate
with the accelerometer. This will probably be one of the blocks in your design.
You could design a hardware SPI interface to connect to the AHB-Lite bus – this could handle all
the SPI signals, with the correct timing, and provide some registers that the software could access
to control the interface and to send and receive data. Alternatively, you could connect the SPI
signals to some input and output signals on the GPIO block, and handle the interface in software.
In this assignment, the hardware solution would be preferred, but if you cannot design hardware,
you could choose the software solution.
A similar decision would arise if you wanted to use the multiplexed 7-segment display…
Block design
When you have completed the top-level design, divide the block design tasks among the members
of the team. For example, somebody needs to do the detailed design of the SPI master interface,
either as hardware or as a set of software functions.
You should also make a plan that will allow the team to complete the rest of the work in the time
remaining.
Final Report
You will work on this assignment as part of a team, but you must submit your own report. Block
diagrams, RTL diagrams and flow charts may be shared within the team, with credit given to
whoever created the diagram. The text of the report should be your own.
The deadline for all reports is 11:59 PM on 10
th May 2024. You should upload the PDF copy
of the report through the SoC project channel in Brightspace.
7
Your report should start with the declaration sheet that is available on Brightspace. It should
include:
• An overview of your design, with details of the information that you can display, the user
interface, etc. Also details of the design process: the main blocks that you identified, your
decisions on how each block would be implemented, etc. This section should make clear who
worked on each block.
• Details of the blocks that you designed. For software blocks, explain how you broke the
problem into separate functions, and what each function does. Use a flow chart or diagram if
you wish. For hardware blocks, give an RTL diagram, and explain how the block works and
why you designed it that way.
• A brief description of the tests you performed, to verify that your system works as intended.
For hardware blocks that you designed, include an example timing diagram from simulation.
• If the project is done as a team, indicate what were your individual contribution towards
the whole project. Note that all members of the same team may not get the same grade.
The score will be proportional to individual contribution.
There is no need to include all the Verilog and program files in your report. However, you may
want to include parts of these files, to show how you solved a particular problem.
One member of each team should collect all the source files used in the assignment: Verilog
design files, testbench files and program files. Combine all of these into one zip file. Do not
include the entire project folder – that will be many megabytes in size, and only a few kilobytes
are needed.
This zip file should be uploaded through a separate channel in Brightspace. Keep the filename
short, but include something to identify it as yours – maybe one name or UCD student number .
Grading
Grading will take into account:
• The capability of the system that you have designed: what can it do?
• The design choices that you made: for example, data acquisition via a hardware SPI interface
would be preferred to a software solution;
• The quality of the implementation: we expect well-designed hardware and well-structured
software;
• The quality of the documentation: the report and the comments on the Verilog and C code;
• The number of students in the team – a larger team will be expected to achieve more.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




















 

掃一掃在手機打開當前頁
  • 上一篇:COMP2006代做、代寫GUI Framework
  • 下一篇:CIS432代做、代寫Python/java程序設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                亚洲欧洲精品一区二区精品久久久| 91蜜桃婷婷狠狠久久综合9色| 久久亚洲精华国产精华液| 欧美高清精品3d| 一道本成人在线| 福利电影一区二区三区| 国产精品久久久久久久岛一牛影视| 1区2区3区欧美| 在线看日本不卡| 欧美精品久久99久久在免费线| 日韩一区二区三区视频在线观看| 538在线一区二区精品国产| 青青草97国产精品免费观看无弹窗版| 亚洲国产精品自拍| 欧美性三三影院| 久久av中文字幕片| 99麻豆久久久国产精品免费| 欧美日韩一区二区在线视频| 欧美激情综合五月色丁香小说| 国产精品视频你懂的| 日本午夜精品视频在线观看| 国产精品久久久久久妇女6080| 中文文精品字幕一区二区| 高清不卡在线观看| 日韩国产欧美三级| 国产精品沙发午睡系列990531| 精品日韩欧美在线| 一级中文字幕一区二区| 香蕉成人伊视频在线观看| 欧美性欧美巨大黑白大战| 麻豆成人免费电影| 欧美日韩精品三区| 亚洲自拍都市欧美小说| 99在线精品免费| 国产传媒日韩欧美成人| 人人超碰91尤物精品国产| 日韩女优av电影| 一区二区免费看| 日韩一区欧美一区| 亚洲精品国产精品乱码不99| 亚洲国产精品成人久久综合一区 | 欧美一区二区播放| 欧美精品18+| 最近日韩中文字幕| 欧美人与z0zoxxxx视频| 亚洲精品第1页| 911精品国产一区二区在线| 丁香桃色午夜亚洲一区二区三区| 欧美成人精品高清在线播放 | 精品视频资源站| 成人黄页在线观看| 国产精品一区久久久久| 国产情人综合久久777777| 裸体健美xxxx欧美裸体表演| 日韩国产精品久久| 国产视频视频一区| 丁香六月综合激情| 国产片一区二区| 欧美人妇做爰xxxⅹ性高电影| 美国毛片一区二区三区| 91免费视频网址| 在线精品亚洲一区二区不卡| 99精品久久免费看蜜臀剧情介绍 | 精品午夜久久福利影院| 亚洲人成亚洲人成在线观看图片| 欧美视频三区在线播放| 亚洲伦理在线精品| 裸体在线国模精品偷拍| 亚洲欧美另类小说| 欧美三区在线观看| 国产真实乱对白精彩久久| 丝瓜av网站精品一区二区| 欧美日韩一区二区三区四区| 精品国产乱子伦一区| 欧美va亚洲va| 午夜久久福利影院| 1区2区3区欧美| 懂色av一区二区夜夜嗨| 欧美高清视频一二三区| 国产日本亚洲高清| 欧美一区二区三区婷婷月色| 中文字幕av一区二区三区| 国产精品影视天天线| 五月天婷婷综合| 久久色.com| 欧美性猛交xxxx黑人交| 久久精品国产亚洲高清剧情介绍| 欧美蜜桃一区二区三区| 91精品久久久久久蜜臀| www成人在线观看| 天堂蜜桃91精品| 国产亚洲精品aa| 国产毛片精品国产一区二区三区| 欧美亚洲国产bt| 欧美激情一区二区三区全黄| 亚洲欧洲制服丝袜| 国产午夜精品一区二区| 久久国产精品一区二区| 国产综合久久久久影院| 99精品久久免费看蜜臀剧情介绍| 亚洲六月丁香色婷婷综合久久| 成人免费三级在线| 日韩视频一区二区三区在线播放| 亚洲自拍偷拍九九九| 久久精品久久精品| 日韩精品一级二级 | 亚洲无线码一区二区三区| 国产精品亚洲人在线观看| 国产精品高潮呻吟| 欧美zozozo| 中文字幕亚洲欧美在线不卡| 国产尤物一区二区| 日韩精品一二区| 91丨九色丨蝌蚪丨老版| 亚洲欧洲韩国日本视频| 99re热视频这里只精品| 这里只有精品99re| 欧美一区二区人人喊爽| 成人毛片视频在线观看| 奇米在线7777在线精品 | 精品久久久久av影院| 亚洲在线视频网站| 国产精品香蕉一区二区三区| 日韩不卡免费视频| 九色综合狠狠综合久久| 亚洲一区二区视频在线观看| 国产精品三级电影| 粉嫩在线一区二区三区视频| 国产日韩欧美精品在线| 日韩国产欧美在线视频| 视频一区中文字幕国产| 精品国内二区三区| 香港成人在线视频| 中文字幕亚洲综合久久菠萝蜜| 激情六月婷婷久久| 粗大黑人巨茎大战欧美成人| 欧美变态tickle挠乳网站| 中文字幕一区二区不卡| 婷婷一区二区三区| 亚洲免费电影在线| 日韩在线一区二区三区| 91丨porny丨首页| 国产麻豆精品在线观看| 日韩一区二区三区在线视频| 一区二区三区中文字幕| 成人黄页毛片网站| 国产一区二区三区四区五区美女| 三级久久三级久久久| 欧美日韩久久久久久| 亚洲成人777| 日韩欧美视频在线| 九九精品一区二区| 亚洲欧美自拍偷拍色图| 欧美三级电影在线观看| 久久99精品久久只有精品| 中文字幕第一区综合| 北岛玲一区二区三区四区| 亚洲成人av一区二区三区| 欧美精品一区二区三区蜜臀| 一本久道久久综合中文字幕| 免费三级欧美电影| 国产精品高潮久久久久无| 欧美高清视频www夜色资源网| 狠狠色丁香久久婷婷综合丁香| 国产精品久久久久四虎| 成人av在线一区二区三区| 亚洲三级在线播放| 久久一夜天堂av一区二区三区| 粉嫩高潮美女一区二区三区| 亚洲国产精品久久一线不卡| 国产丝袜在线精品| 欧美理论片在线| 国产在线麻豆精品观看| 国产精品日韩成人| 欧美午夜不卡视频| 国产精品99久久久久久久vr| 中文字幕在线不卡一区二区三区| 久久综合色之久久综合| 国产精品影视在线| 一区二区三区美女| 色爱区综合激月婷婷| 国产视频一区二区在线| 国产精品一二三在| 久久精品国产亚洲一区二区三区| 精品伦理精品一区| 国产精品白丝av| 国产精品免费久久| 色综合久久久网| 91欧美一区二区| 一区二区三区日韩欧美| 欧美亚洲国产一区在线观看网站| 午夜电影网一区| 2023国产精品视频| 老司机免费视频一区二区三区| 亚洲国产欧美一区二区三区丁香婷| 色综合欧美在线| 午夜精品在线看| 欧美大黄免费观看| 丰满放荡岳乱妇91ww| 久久亚洲捆绑美女|