国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

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程序設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    中文字幕av日韩精品| 欧美日产一区二区三区在线观看| 国产mv免费观看入口亚洲| 国产伦精品一区二区三区高清| 国内精品久久久久伊人av| 欧美激情国产日韩| 国模吧一区二区| 国产伦精品一区二区三区在线| 国产精品一区=区| 99久热re在线精品996热视频| 国产伦精品一区二区三区免费视频 | 久久久久久久久久久91| 久久久久久久久久久91| 国产精品青草久久久久福利99| 国产精品国产三级国产专播精品人| 精品国产乱码久久久久久丨区2区 精品国产乱码久久久久久郑州公司 | 久久久久久久久影视| 久久久久久久97| 国产精品旅馆在线| 中国成人亚色综合网站| 日韩成人av电影在线| 免费在线观看毛片网站| 国产免费一区二区三区| 91精品国产精品| 国产精品视频内| 伊人久久在线观看| 日本一区二区三区在线播放| 欧美精品久久久久久久久久久| 国产在线青青草| 国产精品小说在线| 久久久久久久电影一区| 欧美日韩国产va另类| 五码日韩精品一区二区三区视频| 欧美午夜性视频| 国产精品亚洲美女av网站| 久久99精品久久久水蜜桃| 久久在精品线影院精品国产| 天天久久人人| 国产综合第一页| 国产成人中文字幕| 精品国产一区二区三 | 亚洲欧美日产图| 日韩欧美一区二区三区四区五区| 国内精品视频在线播放| 久久资源av| 欧美精品在线看| 日韩精品第一页| 国产伦精品一区二区三区四区免费 | 日韩一二区视频| 国产噜噜噜噜噜久久久久久久久| 久久精品国产精品青草色艺| 国产精品久久久久久久7电影| 无码免费一区二区三区免费播放| 蜜桃网站成人| 久久久久久久爱| 午夜精品亚洲一区二区三区嫩草 | 国产精品视频白浆免费视频| 午夜精品久久久99热福利| 精品视频免费观看| 色妞久久福利网| 色999五月色| 成人精品视频在线| 国产精品户外野外| 秋霞久久久久久一区二区| 91成人免费视频| 一区二区三区四区欧美| 国产视频九色蝌蚪| 国产精品高清免费在线观看| 欧美亚洲视频在线观看| 日韩中文字幕网站| 日本丰满少妇黄大片在线观看| www国产免费| 欧美激情亚洲一区| 国产女同一区二区| 欧美激情精品久久久久久久变态 | 国产精品久久久久久久久久久不卡| 日日摸天天爽天天爽视频| 97精品伊人久久久大香线蕉| 中文字幕人妻熟女人妻洋洋| 国产欧美一区二区三区在线| 欧美激情久久久久| 国产区日韩欧美| 久久成人精品电影| 国产日韩精品在线| 欧美日韩福利电影| 成人久久久久久久久| 九九热精品视频| 国产免费一区二区三区| 久久97久久97精品免视看| 国产乱子伦精品| 自拍另类欧美| 91成人免费观看网站| 午夜久久久久久久久久久| 国产福利精品视频| 欧美中文字幕视频在线观看| 久久久999国产| 韩国日本不卡在线| 精品国产一二| 91免费在线观看网站| 亚欧洲精品在线视频免费观看| 国产精品50p| 日本欧美黄网站| 国产精品日日做人人爱| 国产色综合天天综合网| 一区二区不卡在线观看 | 亚洲.欧美.日本.国产综合在线 | 一区二区三区av| 69久久夜色精品国产69乱青草| 亚洲一区二区三区av无码| 久久免费精品视频| 欧美精品一区二区三区三州| 精品国产综合| 久久久免费看| 欧美一区二区在线视频观看| 欧美成aaa人片免费看| 99九九视频| 热久久免费视频精品| 两个人的视频www国产精品| 91免费看片在线| 日本阿v视频在线观看| 国产精品久久久久久久久久久不卡| 国产欧美日韩网站| 天堂av一区二区| xxx一区二区| 国产精品夜间视频香蕉| 日本高清久久天堂| 中文字幕剧情在线观看一区| 国产成人精品av| 国产日产精品一区二区三区四区 | 污视频在线免费观看一区二区三区| 久久精品人人做人人爽电影| 免费一级特黄特色毛片久久看| 亚洲一区二区三区四区在线播放 | 日韩中文字幕在线看| 国产又大又长又粗又黄| 亚洲国产欧美不卡在线观看| 久久久7777| 日本免费不卡一区二区| 精品免费二区三区三区高中清不卡| 99国产视频在线| 欧美日韩激情视频在线观看| 亚洲在线一区二区| 国产精品视频一二三四区 | 北条麻妃在线视频观看| 欧美动漫一区二区| 色噜噜色狠狠狠狠狠综合色一| 国产精品电影网| 色黄久久久久久| 99免费在线视频观看| 国语精品中文字幕| 日本久久久久亚洲中字幕| 中文字幕中文字幕一区三区| 久久精品小视频| 国产成人97精品免费看片 | 99精品国产高清在线观看| 精品欧美日韩在线| 色播亚洲婷婷| 亚洲成人网上| 一区二区三区四区国产| 久热精品视频在线免费观看| 日韩在线中文字幕| 久久免费视频2| 超碰97人人人人人蜜桃| 国产伦精品一区二区三区照片91| 欧美日韩在线不卡一区| 人妻无码一区二区三区四区| 午夜肉伦伦影院| 亚洲高清不卡一区| 一区不卡视频| 亚洲字幕一区二区| 中文字幕日韩精品无码内射 | 国产精品久久久久福利| 久久视频在线看| 日韩视频精品在线| 九色综合日本| 国产成人aa精品一区在线播放| 国产精品一区二区欧美| 国产日产精品一区二区三区四区| 狠狠干 狠狠操| 黄色国产小视频| 精品嫩模一区二区三区| 国内精品久久久久久中文字幕| 欧美不卡福利| 精品午夜一区二区| 精品一区二区不卡| 国产欧美在线播放| 国产精品一区二区免费看 | 国产精品无码专区av在线播放| 久久全球大尺度高清视频| 久久久人人爽| 久久99精品久久久久久水蜜桃| 久久久久久网址| 国产成人无码一二三区视频| 久久精品成人欧美大片古装| 久久九九全国免费精品观看| 国产精品美女www| 精品国产乱码久久久久久久软件| 操日韩av在线电影| 欧美精品成人在线| 亚洲精品自在在线观看|