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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • 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
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • 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
Sudden Impact Wearables Design Challenge
  • Challenges & Projects
  • Design Challenges
  • Sudden Impact Wearables Design Challenge
  • More
  • Cancel
Sudden Impact Wearables Design Challenge
Forum Learning Single Board Computers
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Events
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 62 replies
  • Subscribers 6 subscribers
  • Views 6935 views
  • Users 0 members are here
  • board
  • singleboardcomputer
  • raspberry
  • help
  • pi
  • computer
  • singleboard
  • single
  • raspberrypi
  • boardcomputer
  • arduino
Related

Learning Single Board Computers

Former Member
Former Member over 11 years ago

Hello people of the element 14 community! My name is Nehemiah and I am 14 years old. Over the past two years I have been learning electronics such as arduino and a little bit of raspberry pi. I have made a few projects with my arduino (one being my science fair project) and want to do more advanced things. I watch this video by Ben Heck (https://www.youtube.com/watch?v=ZXllm5JWWAs&list=UUhturLXwYxwTOf_5krs0qvA) and wanted to do something similar to that. Could anyone give me a link to the explanation of single board computers and projects like that? That would be so helpful!

 

Thanks in advance,

Nehemiah

  • Sign in to reply
  • Cancel

Top Replies

  • dougw
    dougw over 11 years ago +1
    If you want to try an ambitious retro build, the AIM 65 was a cool single board computer: The schematics are posted here: Rockwell AIM-65 and 6502 related devices Index of /aim65
Parents
  • D_Hersey
    D_Hersey over 11 years ago

    Then I think about how I would do it nowadays.    I'd probably select a processor for which there is a fairly large code-base.  Z-80, 68000, 8051, unless this is some kinda art project.  Then I would get a computer-that-worked.  One I/O line of the c-t-ws is attached to the reset line of the computer-under-development.  Master-slave in the pre-pc language of the day.  Inbetween the boxes is a dual-port SRAM.  These were (o.c.) static and were what the watch-battery was for.  At different times, each box accesses the SRAM.  The physical connection to the slave is using the DIP form-factor of the chip.  We use a dip ribbon cable for the attach.  When we have figured out what we want in terms of code at these locations, we ditch the dual-port ram if favor of a ROM which will be an EEPROM.  We need to turn the address and data lines of the SRAM into two that are time-multiplexed.  We need to jock the control terminals so that only one set of buffers is active at a given moment.

     

    We can attach 244 types to the address lines and select or enable only one buffer (or buffer stack) at a time.  We can attach 245 types to the data lines and select or enable only one bidirectional buffer at a time.  The signal that actuates the selection logic comes from the master.  The more the merrier.  We can ping-pong for a back-channel.  We can establish separate control and data channels.

     

    These processors go to an initial address for code when they come out from reset.  That's where you want to put the memory on the slave card.  The other port attaches to the computer-that-works.  If the c-t-ws has lotsa I/O lines to accommodate the parallel busses of the SRAM, it can be attached the same way.  If I/O pin count is sparing on the c-t-ws, we can use a counter chip on the address lines of this port to degenerate it into a stack, which is a no-worry, as we were planning upon using it just as a sequential pipe anyway.

     

    Rainy-day-play has us holding the slave under RESET with the master, loading the SRAM with code from the master, detaching the master, then releasing the slave.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • D_Hersey
    D_Hersey over 11 years ago

    Then I think about how I would do it nowadays.    I'd probably select a processor for which there is a fairly large code-base.  Z-80, 68000, 8051, unless this is some kinda art project.  Then I would get a computer-that-worked.  One I/O line of the c-t-ws is attached to the reset line of the computer-under-development.  Master-slave in the pre-pc language of the day.  Inbetween the boxes is a dual-port SRAM.  These were (o.c.) static and were what the watch-battery was for.  At different times, each box accesses the SRAM.  The physical connection to the slave is using the DIP form-factor of the chip.  We use a dip ribbon cable for the attach.  When we have figured out what we want in terms of code at these locations, we ditch the dual-port ram if favor of a ROM which will be an EEPROM.  We need to turn the address and data lines of the SRAM into two that are time-multiplexed.  We need to jock the control terminals so that only one set of buffers is active at a given moment.

     

    We can attach 244 types to the address lines and select or enable only one buffer (or buffer stack) at a time.  We can attach 245 types to the data lines and select or enable only one bidirectional buffer at a time.  The signal that actuates the selection logic comes from the master.  The more the merrier.  We can ping-pong for a back-channel.  We can establish separate control and data channels.

     

    These processors go to an initial address for code when they come out from reset.  That's where you want to put the memory on the slave card.  The other port attaches to the computer-that-works.  If the c-t-ws has lotsa I/O lines to accommodate the parallel busses of the SRAM, it can be attached the same way.  If I/O pin count is sparing on the c-t-ws, we can use a counter chip on the address lines of this port to degenerate it into a stack, which is a no-worry, as we were planning upon using it just as a sequential pipe anyway.

     

    Rainy-day-play has us holding the slave under RESET with the master, loading the SRAM with code from the master, detaching the master, then releasing the slave.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
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 © 2026 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