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
Embedded and Microcontrollers
  • Technologies
  • More
Embedded and Microcontrollers
Embedded Forum Where do I start  in embedded?
  • 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 Not Answered
  • Replies 37 replies
  • Subscribers 493 subscribers
  • Views 3724 views
  • Users 0 members are here
  • microcontrollers
  • embedded
Related

Where do I start  in embedded?

majorkuso
majorkuso over 10 years ago

I would like to get better at building embedded devices but can't decide between avr or pic. I have the pickit 3 for pics and avr usbasp  and arduino. the arduino is ok, but I want to get closer to the metal. I would like some structured projects that I can build and familiarize myself with both the hardware and more importantly the c coding i would like to get better at my c. What would you guys recommend?

  • Sign in to reply
  • Cancel

Top Replies

  • johnbeetem
    johnbeetem over 10 years ago in reply to dougw +2
    Caveat: PSoC4 and PSoC5 are great chips, but the PSoC Creator environment you need to design with them only runs on Microsoft Windows.
  • DAB
    DAB over 10 years ago +1
    Hi James, I would suggest the cypress Semiconductor PSOC 4 family. They have a great free development IDE plus they have programmable hardware for digital and analog circuits. They have a great range of…
  • Jan Cumps
    Jan Cumps over 10 years ago +1
    You can go to the very metal with that Arduino that you have. There's no need to invest.
Parents
  • majorkuso
    0 majorkuso over 10 years ago

    I wish that codecadamy had programs to learn c.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • majorkuso
    0 majorkuso over 10 years ago in reply to majorkuso

    I have been reading up on the differences between pic and avr I have read the avr is 4 times faster than the pic  executing one instruction per cycle how much of an impact would that have on a program

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • michaelkellett
    0 michaelkellett over 10 years ago in reply to majorkuso

    James Cook wrote:

     

    I have been reading up on the differences between pic and avr I have read the avr is 4 times faster than the pic  executing one instruction per cycle how much of an impact would that have on a program

     

    None because it's meaningless - what matters is how much code per second and what that code can do !!

     

    There are Pics with quite fast clocks and 16 bit architecture - AVRs and megaAVRs are 8 bit architectures.

     

    The best book to learn C, and in the opinion of many, including me, the best programming book (on any language) ever written is: "The C programming Language" by Brian Kernighan and Dennis Ritchie.

     

    For simple projects AVRs or 16 bit PICs are both perfectly adequate.

     

    If you are choosing  a processor based on performance rather than you already having the tools you should consider ARM Cortex which offer by far the widest range of features/performance/suppliers of any architecture.

     

    MK

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • michaelkellett
    0 michaelkellett over 10 years ago in reply to majorkuso

    James Cook wrote:

     

    I have been reading up on the differences between pic and avr I have read the avr is 4 times faster than the pic  executing one instruction per cycle how much of an impact would that have on a program

     

    None because it's meaningless - what matters is how much code per second and what that code can do !!

     

    There are Pics with quite fast clocks and 16 bit architecture - AVRs and megaAVRs are 8 bit architectures.

     

    The best book to learn C, and in the opinion of many, including me, the best programming book (on any language) ever written is: "The C programming Language" by Brian Kernighan and Dennis Ritchie.

     

    For simple projects AVRs or 16 bit PICs are both perfectly adequate.

     

    If you are choosing  a processor based on performance rather than you already having the tools you should consider ARM Cortex which offer by far the widest range of features/performance/suppliers of any architecture.

     

    MK

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
  • modalpdx
    0 modalpdx over 10 years ago in reply to michaelkellett

    Seconded! (The ARM suggestion, that is.) I have been slowly going through a free course on ARM Cortex M0+ programming and have been fairly impressed by the level of complexity. It's not as simple as AVR programming, but it's not mind-blowingly difficult either if you have a little background in MCUs. At a high level, they all share similarities.

     

    In case anyone's interested, the PDF for the course is offered as a free download from a EE professor at Indiana University. Search for "Discovering the STM32 Microcontroller" and you'll get to the PDF quickly. The course requires a $10 STM32VLDiscovery board and a few other parts that lots of folks already have on hand. The STLink-V1 on the board isn't the greatest (it operates as a SCSI mass storage device, which is really, really weird) but it works.

    • Cancel
    • Vote Up +1 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 © 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