element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Members
    Members
    • Achievement Levels
    • Benefits of Membership
    • Feedback and Support
    • Members Area
    • Personal Blogs
    • What's New on element14
  • Learn
    Learn
    • eBooks
    • Learning Center
    • Learning Groups
    • STEM Academy
    • Webinars, Training and Events
  • Technologies
    Technologies
    • 3D Printing
    • Experts & Guidance
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Arduino Projects
    • Design Challenges
    • element14 presents
    • Project14
    • Project Groups
    • Raspberry Pi Projects
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Or choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
Avnet Boards Forums
  • Products
  • Dev Tools
  • Avnet Boards Community
  • Avnet Boards Forums
  • More
  • Cancel
Avnet Boards Forums
MicroZed Hardware Design MicroZed: driving LEDs using the user MIOs of PMOD
  • Forum
  • Documents
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Avnet Boards Forums requires membership for participation - click to join
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 5 replies
  • Subscribers 175 subscribers
  • Views 228 views
  • Users 0 members are here
Related

MicroZed: driving LEDs using the user MIOs of PMOD

Former Member
Former Member over 8 years ago

Hi,

I want to use the user MIO that are connected to the PMOD on the MicroZed board to drive the LEDs (via transistor switch) and the MOSFET driver in my PoC design. I have several questions related to both HW and SW that I would be very grateful if someone can help:
1. What is the maximum current these MIO pins can deliver?
2. How could I control them in my SW applications? Is that possible to include these MIO pins in the file system of the Linux OS?

  • Sign in to reply
  • Cancel
  • Former Member
    0 Former Member over 8 years ago

    Per the Zynq data sheet ds187( http://www.xilinx.com/support/documentation/data_sheets/ds187-XC7Z010-XC7Z020-Data-Sheet.pdf  ) the MIO pins can drive 8 mA. As these signals are directly connected to the Zynq device you should take care not to damage the device with electrostatic discharge or out of range voltages.

     

    The easiest way to control the MIO under Linux is probable SysFs functions. Here are a couple of forum posts related to using SysFs:

     

    http://zedboard.org/content/which-tutorial-linux-pl-access

    http://zedboard.org/content/blink-led-linaroubuntu1110

    http://zedboard.org/content/writing-gpio-linux-application-microzed

     

    If you would prefer to write a C application under Linux and control the MIO that way there is an example in the ZedBoard Concept Tools and Techniques (CTT) tutorial that might be helpful: http://zedboard.org/support/design/1521/11

     

    -Gary

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 8 years ago in reply to Former Member

    Hi Gary,

    Thanks a lot for the information and quick response. Really grateful. 8mA is just good enough for me, and I am using it as o/p and I have protection circuit in place to prevent the electrostatic discharge.
    I will look into the ZEDBOARD CTT example because I want to control it in C application. Will post the results here later.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 8 years ago

    ZynqBooks tutorial 4A makes the LEDs cycle on ZedBoard carrier board using Vivado and a small C program. With minor changes it works for the MicroZed board u2013 and makes a great intro to Vivado BSP generation. The ZynqBooks tutorials are free to download. Then change this:

    1. All references to ZedBoard become MicroZed
    2. p95 step (an) u201CRun Connection Automationu201D doesn't appear as you need to add the AXI interface first:
      - Re-customise IP -> clock config -> PL fabric clocks -> FCLK_CLK0 100MHZ enabled
      - PS-PL config -> GP master AXI -> MAXI I/face = selected
      - OK
    3. p96 step (au) constraints editing: the LEDs are on different pins on the MicroZed carrier. Change u201Cset_property PACKAGE_PIN T22u201D to u201CU14u201D etc. Changes for LEDS_out[0..7] are:
      From: T22,T21,U22,U21,V22,W22,U19,U14 (for ZedBoard carrier)
      To: U14,U15,U18,U19,R19,V13,P14,R14 (For MicroZed carrier)
    4. Note there are some minor UI differences in later versions of Vivado compared to the version used in the tutorial. Nothing major though.


    You will need to use the Xilinx Platform Cable adapter to follow the tutorial to the letter.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 8 years ago in reply to Former Member

    Hi Rikpage,

    Thanks a lot for this information. Will look into it.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 8 years ago in reply to Former Member

    Hi Gary,

    Just a quick update, as promised. Based on the information you provided, I decided to use the sysfs API and managed to be successfully flashing our LEDs with these MIO exported on the PMOD connector. Thanks for your help.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2023 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube