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
Community Hub
Community Hub
Member's Forum open-source microcontroller IDE
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Leaderboard
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Community Hub to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 13 replies
  • Subscribers 606 subscribers
  • Views 149 views
  • Users 0 members are here
  • ide
  • open_source
  • stm32
  • arduino
Related

open-source microcontroller IDE

Moussa1492
Moussa1492 11 hours ago
Hi everyone,

I’m building an open-source desktop IDE for microcontroller learning and prototyping, mainly focused on Arduino and STM32.

The goal is not to replace professional tools like STM32CubeIDE, PlatformIO, Keil or IAR, but to provide a simpler learning-oriented workflow for students, technicians and training centers.

Current / planned features:
- Arduino and STM32 project creation
- Build / upload workflow
- Serial monitor and serial plotter
- STM32 debug with GDB/OpenOCD
- Register / memory / stack views
- Basic SVD peripheral view
- Static analysis with cppcheck / MISRA-light
- Coverage reports
- Crash / HardFault reporting
- Power profiling demo via UART/SWO-style events
- QEMU/Renode simulation experiments

I’m looking for honest feedback:
1. Would such a tool be useful for education or training?
2. Which feature would be most valuable?
3. What would make you trust or not trust this kind of tool?
4. Would it be better as a VS Code extension, standalone IDE, or educational toolkit?
5. What pain points do you have with current embedded IDEs?

I’m not trying to promote a paid product here. I’m trying to validate whether this project should continue as an open-source educational tool or pivot toward a smaller specialized utility.

Thanks for any critical feedback.
  • Sign in to reply
  • Cancel
Parents
  • BigG
    BigG 10 hours ago

    You have listed some interesting features, but before diving into these, ask the simple question: "what problem am I trying to solve".

    So, if you are educational focused, what are the pain points. Explore these first before coming up with a list of features.

    It's already a crowded market, so determine the gaps between what is currently on offer and what is lacking. All products have strengths and weaknesses.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • Moussa1492
    Moussa1492 9 hours ago in reply to BigG

    You’re right. I was thinking too much in terms of features.

    The problem I’m trying to validate is whether learners get stuck when moving from Arduino to STM32 or more realistic embedded workflows: toolchains, OpenOCD/GDB, linker scripts, registers, faults, and build errors.

    Before adding features, I need to identify the real gaps in existing tools and understand what students, teachers, or technicians actually struggle with.

    Maybe the answer is not a full IDE, but a smaller learning/debugging assistant.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • Moussa1492
    Moussa1492 9 hours ago in reply to BigG

    You’re right. I was thinking too much in terms of features.

    The problem I’m trying to validate is whether learners get stuck when moving from Arduino to STM32 or more realistic embedded workflows: toolchains, OpenOCD/GDB, linker scripts, registers, faults, and build errors.

    Before adding features, I need to identify the real gaps in existing tools and understand what students, teachers, or technicians actually struggle with.

    Maybe the answer is not a full IDE, but a smaller learning/debugging assistant.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • Moussa1492
    Moussa1492 7 hours ago in reply to BigG

    Yes, I agree. I’m realizing that the first step should be identifying where learners actually get blocked, not deciding features first.

    Maybe the real problem is not writing code, but understanding how everything fits together: build system, linker script, startup code, MCU configuration, registers, debugger, RTOS concepts, and hardware feedback.

    AI may or may not be the right answer, but I’m thinking of it more as an explanation layer over real tools, not something that hides the complexity.

    I’ll look more closely at where current tools expose or hide these concepts. Zephyr is a good example to study because it exposes more of the embedded system structure.

    Thanks, this helps me narrow the problem.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • BigG
    BigG 8 hours ago in reply to Moussa1492

    Yes, when starting out I got so focused on the coding language (and debugging) while taking for granted the rest. More can be done teaching about how it all gets put together. Arduino IDE hides this complexity. Zephyr RTOS as a platform/ecosystem exposes it. Not sure how AI addresses the problem though, but early days. As said, it's important to focus on identifying and then solving the problem.

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