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
Embedded and Microcontrollers
  • Technologies
  • More
Embedded and Microcontrollers
Embedded Forum how to start to develop customized development board??
  • Blog
  • Forum
  • Documents
  • Quiz
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Embedded and Microcontrollers to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 5 replies
  • Answers 4 answers
  • Subscribers 465 subscribers
  • Views 913 views
  • Users 0 members are here
Related

how to start to develop customized development board??

shakti334
shakti334 over 5 years ago

I have Worked on few development boards of arduino such as nano,uno,mega,etc. But how can we design our own microcontroller board? what is the procedure to design them and which softwares are used?

waiting for an appropriate answer. Thanks in Advance.

  • Sign in to reply
  • Cancel

Top Replies

  • Fred27
    Fred27 over 5 years ago +4 suggested
    If you really want to design your own development board, then I agree with the posters above. There's not a great deal of point. However, I suspect what you really mean is you want to design your own custom…
  • fmilburn
    fmilburn over 5 years ago in reply to clem57 +3 suggested
    As the others have said, you should define your objectives and needs. But if you are interested in what the general steps are there is a tutorial here for creating a small Microchip (was Atmel) development…
  • clem57
    clem57 over 5 years ago +2 suggested
    Before you go build your own custom board, you have to ask what use(s) do you plan for it. Once you decide the goal, then ask why a current board does not fit your needs. It is possible to build a board…
Parents
  • Fred27
    0 Fred27 over 5 years ago

    If you really want to design your own development board, then I agree with the posters above. There's not a great deal of point. However, I suspect what you really mean is you want to design your own custom board with a microcontroller on it. This is really worthwhile.

     

    I've made a few of my own boards based on the MSP430 microcontroller. Here are a few tips to get you started:

    • Learn from your development board.
      There will be a few essential components on there such as decoupling capacitors, pull-up resistors, etc. Take parts of the design that have been done by someone who really knows what they're doing. They probably had a good reason for adding each component. Then double-check with the datasheet.
    • Add a debug header.
      You probably won't want the debugger on your board, so make sure you have an appropriate separate debugger and add a header to connect it.
    • Add a few LEDs or even a serial port for debugging.
      Always handy, even if the final design doesn't need them.
    • Pick a package for designing your board.
      I chose Eagle, but there are other options. It will take a while to learn the package, but you have to do it. Find tutorials online.
    • Separate parts of your layout with traces that are easy to cut.
      Assume that you will make mistakes and some parts of the board won't work. If you've made a mistake with a sensor it will at least allow you to test that the microcontroller part works. You can check each bit in isolation. That way when you spin up version 2.0 you are more likely to have found most of the mistakes.

     

    I hope some of these tips help.

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • Fred27
    0 Fred27 over 5 years ago

    If you really want to design your own development board, then I agree with the posters above. There's not a great deal of point. However, I suspect what you really mean is you want to design your own custom board with a microcontroller on it. This is really worthwhile.

     

    I've made a few of my own boards based on the MSP430 microcontroller. Here are a few tips to get you started:

    • Learn from your development board.
      There will be a few essential components on there such as decoupling capacitors, pull-up resistors, etc. Take parts of the design that have been done by someone who really knows what they're doing. They probably had a good reason for adding each component. Then double-check with the datasheet.
    • Add a debug header.
      You probably won't want the debugger on your board, so make sure you have an appropriate separate debugger and add a header to connect it.
    • Add a few LEDs or even a serial port for debugging.
      Always handy, even if the final design doesn't need them.
    • Pick a package for designing your board.
      I chose Eagle, but there are other options. It will take a while to learn the package, but you have to do it. Find tutorials online.
    • Separate parts of your layout with traces that are easy to cut.
      Assume that you will make mistakes and some parts of the board won't work. If you've made a mistake with a sensor it will at least allow you to test that the microcontroller part works. You can check each bit in isolation. That way when you spin up version 2.0 you are more likely to have found most of the mistakes.

     

    I hope some of these tips help.

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • 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 © 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