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
  • About Us
  • 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 Embedded C book or course
  • 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 12 replies
  • Answers 4 answers
  • Subscribers 464 subscribers
  • Views 269 views
  • Users 0 members are here
  • embedded c
Related

Embedded C book or course

Jairo
Jairo 4 days ago

Hi, could you recommend me an embedded C book or course?, a time ago I read a book about C but was not oriented to embedded (I work with microcontrollers)

  • Sign in to reply
  • Cancel

Top Replies

  • michaelkellett
    michaelkellett 2 days ago +3 suggested
    The general purpose books are fine, and worth reading - if you plan to buy one I suggest at least considering "Modern C, Jans Gustedt, third edition, ISBN 9781633437777", it's only just become available…
  • beacon_dave
    beacon_dave 4 days ago +2 suggested
    Microchip have some online C programming courses, which may be a starting point or refresher. https://mu.microchip.com/page/development-tools
  • shabaz
    shabaz 4 days ago +2 suggested
    Would also suggest, pick up a couple of normal C and C++ books, plus Python, can recommend the classics Brian Kernighan and Dennis Ritchie as well as Bjarne Stroustrup as well as the very much beginners…
Parents
  • kmulier
    0 kmulier 3 days ago

    My colleague and I wrote an online book about C coding for microcontrollers: embeetle.com/

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • michaelkellett
    0 michaelkellett 2 days ago in reply to kmulier

    I looked at your link but I didn't spot anything with special relevance to micro controllers - did I miss something ?

    MK

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • kmulier
    0 kmulier 2 days ago in reply to michaelkellett

    It is specifically written for microcontrollers. Some chapters focus on the language itself, other chapters dive into how that applies on microcontrollers.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • michaelkellett
    0 michaelkellett 2 days ago in reply to kmulier

    Please give an actual example of  "other chapters dive into how that applies on microcontrollers" - I couldn't find any tutorial material that discusses embedded or micro controller programming in C.

    The kind of thing I would expect is, for example, an explanation of how you force an 8 bit read of a hardware register that supports 8 or 16 bit reads with different behaviour. 

    But I couldn't find anything other than a very generalised C "manual" and a lot of lists of processors and boards.

    There isn't an index - but I couldn't find an explanation of the volatile keyword in the section on variables.

    MK

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • kmulier
    0 kmulier 2 days ago in reply to michaelkellett

    The index can be found if you scroll down on this page:
    https://embeetle.com/#embedded-dev/c-tutorial

    Here are sections that are specifically aimed at microcontrollers:

    Variables => RAM Memory (see https://embeetle.com/#embedded-dev/c-tutorial/variables)

    Structures => Bit Fields (see https://embeetle.com/#embedded-dev/c-tutorial/structures/bit-fields , also discusses the volatile keyword)

    Unions => Use Case: SFR Register Mapping (see https://embeetle.com/#embedded-dev/c-tutorial/unions)

    You're right that the course material is more focused on the C language itself. Nevertheless, it's still aimed at microcontrollers. 

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • kmulier
    0 kmulier 2 days ago in reply to michaelkellett

    The index can be found if you scroll down on this page:
    https://embeetle.com/#embedded-dev/c-tutorial

    Here are sections that are specifically aimed at microcontrollers:

    Variables => RAM Memory (see https://embeetle.com/#embedded-dev/c-tutorial/variables)

    Structures => Bit Fields (see https://embeetle.com/#embedded-dev/c-tutorial/structures/bit-fields , also discusses the volatile keyword)

    Unions => Use Case: SFR Register Mapping (see https://embeetle.com/#embedded-dev/c-tutorial/unions)

    You're right that the course material is more focused on the C language itself. Nevertheless, it's still aimed at microcontrollers. 

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