element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • 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
  • Settings
FPGA
  • Technologies
  • More
FPGA
Blog Received Arty-S7 Board
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join FPGA to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: misaz
  • Date Created: 28 May 2022 2:20 PM Date Created
  • Views 993 views
  • Likes 8 likes
  • Comments 3 comments
  • arty-s7
  • xilinx
  • fpga
  • spartan-7 fpga
  • digilent
  • arty s7
  • spartan-7
  • verilog
  • spartan
Related
Recommended

Received Arty-S7 Board

misaz
misaz
28 May 2022

Hello everyone.

Yesterday I received Arty S7 Board for the 7 Ways to Leave Your Spartan-6 FPGA contest.

image

Board is offered available in two variants differing in FPGA. We received the better variant with Spartan XC7S50 FPGA featuring 52160 logic cells, 2700 kilobits of RAM memory (after bits to bytes conversion it is 337.5 kilobytes), 120 DSP blocks and much more.

image

Board looks nice and is preloaded by demo featuring buttons, switches, LEDs and RGB leds.

I started with installing Vivado of course. Since I used Vivado last time it grown again, so I begin with cleaning disk for being able to install it. Blush It requires 120 GiB of storage when installing and after installation it occupy almost 80 GiB of disk storage. WTF?!

After installing I of course tried to make my own simple demo for testing functionality of the board. So, I created simple verilog module blinking with led.

module led_test(input wire clk, input wire rst, output reg led);
    reg [24:0] timer;
    
    always @(posedge clk) begin
        if (rst == 1) begin
            led <= 1;
            timer <= 0;
        end else begin 
            if (timer >= 1000000) begin
                led <= ~led;
                timer <= 0;
            end else begin
                timer <= timer + 1;
            end
        end
    end
    
endmodule

Then I deployed the code to the FPGA, and it worked well! So, I consider my board as functional and ready to make my project.

You don't have permission to edit metadata of this video.
Edit media
x
image
Upload Preview
image

But before I start making my project, I need to complete blog posts about my experiments as part of Maxim Integrated Experimenting with Current Sense Amplifiers Design Chanllege. So, for next two weeks I will be quite about Spartan, but then I will come back, and I will post blogs about my project which I promised as part of application for this competition. Later I will connect some sensor to this board and finally I will make some experiment. So, thank you for reading this blog post and stay tuned. Blush

  • Sign in to reply
  • 14rhb
    14rhb over 3 years ago

    A great start, well done. The Arty S7 is a very useful board; I was kindly sent one many years back from E14 and it started my journey into FPGA and Vivado. I look forward to your future posts.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • misaz
    misaz over 3 years ago in reply to javagoza

    Latest 2022.1

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • javagoza
    javagoza over 3 years ago

    Nice. I've also received the S7-50 variant.

    Which version of Vivado are you using?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • 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 © 2025 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