Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the MIO operation method of PS in Zynq

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "what is the MIO operation method of PS in Zynq". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Before writing the program, let's first understand the BANK distribution of GPIO. GPIO has four BANK, which should be distinguished from the BANK of MIO. BANK0 controls 32 signals, BANK1 controls 22 signals, which is 54 pins of MIO. BANK2 and BANK3 can control 64 PL pins. Each group has three signals, input EMIOGPIOI, output EMIOGPIOO, output enable EMIOGPIOTN, a total of 192 signals.

The following picture shows the control of GPIO, the experiment will use the output part of the register, data register DATA, data mask register MASK_DATA_LSW,MASK_DATA_MSW, direction control register DIRM, output enable controller OEN.

In the program, the following functions are used to set direction and output enable:

Int main ()

{

XGpioPs_Config * GPIO_CONFIG

Int Status

/ / General modus operandi to find GPIO list

GPIO_CONFIG= XGpioPs_LookupConfig (MIO_0_ID)

/ / Detection of Exception

Status= XGpioPs_CfgInitialize (& GPIO_PTR, GPIO_CONFIG, GPIO_CONFIG- > BaseAddr)

If (Status! = XST_SUCCESS)

{

Return XST_FAILURE

}

/ / set the PIN pin direction of MIO

XGpioPs_SetDirectionPin (& GPIO_PTR,0, GPIO_OUTPUT)

XGpioPs_SetDirectionPin (& GPIO_PTR,13, GPIO_OUTPUT)

/ / enable PIN pin output of MIO

XGpioPs_SetOutputEnablePin (& GPIO_PTR,0, GPIO_OUTPUT)

XGpioPs_SetOutputEnablePin (& GPIO_PTR,13, GPIO_OUTPUT)

While (1)

{

XGpioPs_WritePin (& GPIO_PTR,0, 1)

XGpioPs_WritePin (& GPIO_PTR,13, 0)

Usleep (100000)

XGpioPs_WritePin (& GPIO_PTR,0, 0)

XGpioPs_WritePin (& GPIO_PTR,13, 1)

Usleep (100000)

}

Return 0

}

Realize the flicker of two LED

This is the end of the content of "what is the MIO operation method of PS in Zynq". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report