element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • 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
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum What would you like to see tested on the Raspberry Pi 4?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 50 replies
  • Subscribers 672 subscribers
  • Views 5288 views
  • Users 0 members are here
  • raspberry pi 4 testing
Related

What would you like to see tested on the Raspberry Pi 4?

cstanton
cstanton over 6 years ago

We have a couple of these in the office that we can run software / test some things on - so what would you like to see tested on the hardware that would help to swing the decision for you as to whether or not it's worth it?

 

I've seen a few questions about Sega Rally running on MAME, questions about h264 encoding, realtime transcoding - for some of these I'd have to find the software/setup but it's certainly do-able.

 

So let me know, what do you want to see tested on the Pi 4?

  • Sign in to reply
  • Cancel
  • rew
    rew over 6 years ago

    Does the CPU start throttling when I run  a CPU-intensive task? (say "yes > /dev/null & yes > /dev/null & yes > /dev/null & yes > /dev/null &" )

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • michaelkellett
    michaelkellett over 6 years ago

    I'd like to see the maximum digital  IO toggle rate from a C programme.

     

    MK

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Cancel
  • rew
    rew over 6 years ago in reply to michaelkellett

    When there wasn't anything like a raspberry pi GPIO library I wrote my own. You had to run that as root: It mmap-ed the GPIO module hardware. Then you'd be able to get into the tens of MHz range, maybe even hundreds (but the physical pin hardware will stop responding before that!)

     

    When you go through the Linux GPIO driver, I'd expect something in the order of 100-1000 kHz....

     

    Update:
    Ran the test. With "wiring pi" (blink example from: https://elinux.org/RPi_GPIO_Code_Samples  ) you get 10MHz. It seems to do the mmap that I thought would get decent performance.

    I tried a second "gpio access method"  (BCM library), but that failed the test (as in I couldn't get it to work on short notice).

    • Cancel
    • Vote Up +5 Vote Down
    • Sign in to reply
    • Cancel
  • gpolder
    gpolder over 6 years ago in reply to michaelkellett

    rpitx (https://github.com/F5OEO/rpitx ) can go up to 1500MHz (I expect on a Pi 3) would be great to know the upper limit on the Pi 4.

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
  • shabaz
    shabaz over 6 years ago in reply to rew

    I think there maybe was a hard 250MHz physical I/O ceiling, because on an old Pi (I think Pi 2), in C code, with the WiringPi library (which offers an Arduino-like API) I was able to get a signal of approx 5.8MHz by toggling a pin up and down using the digitalWrite command (and compared it with Python etc here:  Raspberry Pi GPIO Explained  ) but the jitter was on certain discrete boundaries, i.e. the I/O seems to be clocked out at some rate of 250MHz, too fine to be from just usual context switching. I couldn't find any documentation at the time to support or un-support this theory though.

    image

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Cancel
  • shabaz
    shabaz over 6 years ago in reply to rew

    Sorry, just saw your update. Very cool, 10MHz sounds about right, given the Pi 2 managed 5.8MHz.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • michaelkellett
    michaelkellett over 6 years ago in reply to rew

    Thanks for the info - I'll take a look at that.

     

    I've finally bought a PI - CPC had 2GB Pi 4 in stock. I've got it booted up and now I had better make it do something.

     

    MK

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Cancel
  • cstanton
    cstanton over 6 years ago in reply to rew

    rew , it'll start throttling when the CPU hits 80-83 degC after about 4 minutes at 22-23degC room temperature.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • cstanton
    cstanton over 6 years ago in reply to gpolder

    Huh, I do have a HackRF One...

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • gpolder
    gpolder over 6 years ago in reply to cstanton

    that's great, that one will go up to 6 GHz.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • 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