Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. ARM and the framework disaster

ARM and the framework disaster

Scheduled Pinned Locked Moved The Lounge
questionc++visual-studio
32 Posts 14 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H honey the codewitch

    In their defense a lot of the crap is for supporting hardware that the device has, even if you won't be using most of it (they don't know in advance what you will use) - but the ESP-IDF has a "menuconfig" script that will remove headers for components you aren't using to shorten the compile times. IoT doesn't suffer from the "free lunch problem" you describe. Every cycle and byte counts. You're dealing with 80kB of RAM and 256kB of non-volatile flash program space and that's being generous. Some have far less.

    Real programmers use butterflies

    Greg UtasG Offline
    Greg UtasG Offline
    Greg Utas
    wrote on last edited by
    #8

    Maybe that'll be the blessing of IOT, that those who work on it will learn to think about performance.

    Robust Services Core | Software Techniques for Lemmings | Articles
    The fox knows many things, but the hedgehog knows one big thing.

    <p><a href="https://github.com/GregUtas/robust-services-core/blob/master/README.md">Robust Services Core</a>
    <em>The fox knows many things, but the hedgehog knows one big thing.</em></p>

    enhzflepE 1 Reply Last reply
    0
    • Sander RosselS Sander Rossel

      I know ;)

      Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

      H Offline
      H Offline
      honey the codewitch
      wrote on last edited by
      #9

      I always assume you're messing with me, but I reply as though you're not just to mess with you. :)

      Real programmers use butterflies

      1 Reply Last reply
      0
      • H honey the codewitch

        First of all, regarding the requirement of using code generators and drag and drop widgets to "program" in C++, can we simply not? Whoever thought that was a good idea is currently at the top of my naughty list. I'm looking at you stm32CubeIDE. Tell me what the venn diagram looks like between people that code in C and C++ and people that want drag and drop heavy handed code generator "modules" they have to muck with in a weird IDE that you're suddenly tied to? Because I don't think the intersection is very big. This junk makes VB6 look streamlined. Also why does it have to be such a hassle to code ARM devices? I have two of them collecting dust because every single framework has something terrible about it that makes it unusable. All I want is to code in C++, in a framework people actually use, and one that doesn't take an hour ever time the firmware needs to be rebuilt. Apparently the people that write the toolchains for ARM find that to be too tall an order. I just don't get it. At this rate, I'm never coding for ARM Cortex-Ms.

        Real programmers use butterflies

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #10

        Never thought C++ was usable for developing UI's. I use C# and VS compiles my packages to ARM, ARM64, x86 and x64.

        It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

        H 1 Reply Last reply
        0
        • L Lost User

          Never thought C++ was usable for developing UI's. I use C# and VS compiles my packages to ARM, ARM64, x86 and x64.

          It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

          H Offline
          H Offline
          honey the codewitch
          wrote on last edited by
          #11

          I seriously doubt it runs on an Arm Cortex-M0 with 80kb of RAM and 256kB of flash. ARM Cortex-As are a much different animal. They're basically fancy smartphone or surface PC CPUs.

          Real programmers use butterflies

          L 1 Reply Last reply
          0
          • H honey the codewitch

            I seriously doubt it runs on an Arm Cortex-M0 with 80kb of RAM and 256kB of flash. ARM Cortex-As are a much different animal. They're basically fancy smartphone or surface PC CPUs.

            Real programmers use butterflies

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #12

            Building ships in bottles.

            It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

            H 1 Reply Last reply
            0
            • L Lost User

              Building ships in bottles.

              It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

              H Offline
              H Offline
              honey the codewitch
              wrote on last edited by
              #13

              My smart watch is a ship in a bottle?

              Real programmers use butterflies

              1 Reply Last reply
              0
              • H honey the codewitch

                First of all, regarding the requirement of using code generators and drag and drop widgets to "program" in C++, can we simply not? Whoever thought that was a good idea is currently at the top of my naughty list. I'm looking at you stm32CubeIDE. Tell me what the venn diagram looks like between people that code in C and C++ and people that want drag and drop heavy handed code generator "modules" they have to muck with in a weird IDE that you're suddenly tied to? Because I don't think the intersection is very big. This junk makes VB6 look streamlined. Also why does it have to be such a hassle to code ARM devices? I have two of them collecting dust because every single framework has something terrible about it that makes it unusable. All I want is to code in C++, in a framework people actually use, and one that doesn't take an hour ever time the firmware needs to be rebuilt. Apparently the people that write the toolchains for ARM find that to be too tall an order. I just don't get it. At this rate, I'm never coding for ARM Cortex-Ms.

                Real programmers use butterflies

                C Offline
                C Offline
                Christian Graus
                wrote on last edited by
                #14

                People still use C++? *ducks*

                H 1 2 Replies Last reply
                0
                • Greg UtasG Greg Utas

                  Maybe that'll be the blessing of IOT, that those who work on it will learn to think about performance.

                  Robust Services Core | Software Techniques for Lemmings | Articles
                  The fox knows many things, but the hedgehog knows one big thing.

                  enhzflepE Offline
                  enhzflepE Offline
                  enhzflep
                  wrote on last edited by
                  #15

                  Its because we have to think of performance, cycles, milliamp hours, that I choose to play with uControllers. Protected mode made the x86 landscape considerably less fun. Pre-emptive multi-tasking? Meh, why even bother anymore! I'll just play games on it. :-\

                  Greg UtasG 1 Reply Last reply
                  0
                  • enhzflepE enhzflep

                    Its because we have to think of performance, cycles, milliamp hours, that I choose to play with uControllers. Protected mode made the x86 landscape considerably less fun. Pre-emptive multi-tasking? Meh, why even bother anymore! I'll just play games on it. :-\

                    Greg UtasG Offline
                    Greg UtasG Offline
                    Greg Utas
                    wrote on last edited by
                    #16

                    I don't want to worry about cycles or milliamp hours. But I'm pretty much with you on the rest. :) Well, except that I rarely play games.

                    Robust Services Core | Software Techniques for Lemmings | Articles
                    The fox knows many things, but the hedgehog knows one big thing.

                    <p><a href="https://github.com/GregUtas/robust-services-core/blob/master/README.md">Robust Services Core</a>
                    <em>The fox knows many things, but the hedgehog knows one big thing.</em></p>

                    1 Reply Last reply
                    0
                    • C Christian Graus

                      People still use C++? *ducks*

                      H Offline
                      H Offline
                      honey the codewitch
                      wrote on last edited by
                      #17

                      *sideeyes you* :suss:

                      Real programmers use butterflies

                      C 1 Reply Last reply
                      0
                      • H honey the codewitch

                        *sideeyes you* :suss:

                        Real programmers use butterflies

                        C Offline
                        C Offline
                        Christian Graus
                        wrote on last edited by
                        #18

                        LOL!!! I do miss C++

                        1 Reply Last reply
                        0
                        • H honey the codewitch

                          First of all, regarding the requirement of using code generators and drag and drop widgets to "program" in C++, can we simply not? Whoever thought that was a good idea is currently at the top of my naughty list. I'm looking at you stm32CubeIDE. Tell me what the venn diagram looks like between people that code in C and C++ and people that want drag and drop heavy handed code generator "modules" they have to muck with in a weird IDE that you're suddenly tied to? Because I don't think the intersection is very big. This junk makes VB6 look streamlined. Also why does it have to be such a hassle to code ARM devices? I have two of them collecting dust because every single framework has something terrible about it that makes it unusable. All I want is to code in C++, in a framework people actually use, and one that doesn't take an hour ever time the firmware needs to be rebuilt. Apparently the people that write the toolchains for ARM find that to be too tall an order. I just don't get it. At this rate, I'm never coding for ARM Cortex-Ms.

                          Real programmers use butterflies

                          1 Offline
                          1 Offline
                          11917640 Member
                          wrote on last edited by
                          #19

                          I am working with STM32 for several years. Looks like every new release has more and more bugs, which are never fixed. On the other hand, new CubeIDE version has super-ugly new look. Probably they have too much UI programmers, but not enough hadrware programmers. CubeMX code generator produces non-working code. But if you don't want code generator, you can write everything from scratch. All code samples are written from scratch without CubeMX. CubeIDE itself is OK, it is Eclipse-based and makes its work. Starting a new project now, I think I will look for another options. If looks like STM moves in wrong direction.

                          H 1 Reply Last reply
                          0
                          • 1 11917640 Member

                            I am working with STM32 for several years. Looks like every new release has more and more bugs, which are never fixed. On the other hand, new CubeIDE version has super-ugly new look. Probably they have too much UI programmers, but not enough hadrware programmers. CubeMX code generator produces non-working code. But if you don't want code generator, you can write everything from scratch. All code samples are written from scratch without CubeMX. CubeIDE itself is OK, it is Eclipse-based and makes its work. Starting a new project now, I think I will look for another options. If looks like STM moves in wrong direction.

                            H Offline
                            H Offline
                            honey the codewitch
                            wrote on last edited by
                            #20

                            I really like the ESP32s. The ESP-IDF is nice to code in - you can use fopen() and printf() and such, though I've had some issues with the SPI, but SPI works great under the Arduino framework with it. The achilles heel is it's kind of quirky and draws more power than some other offerings. However, again, coding with it is just great compared to the STM32, IMO. They are also powerful for an IoT device. The minimum configuration is single core, 360k or so of RAM and 4MB of NVS flash. A typical configuration has 520k of RAM and two cores. They have generous IO, with multiple SPI and I2C controllers, a ton of built in widgets including bluetooth and wifi, touch sensors, a magnetic field detector, ADCs (though a bit dodgy) and DACs, and all the pins are remappable in software. They really are fantastic little machines.

                            Real programmers use butterflies

                            1 Reply Last reply
                            0
                            • H honey the codewitch

                              First of all, regarding the requirement of using code generators and drag and drop widgets to "program" in C++, can we simply not? Whoever thought that was a good idea is currently at the top of my naughty list. I'm looking at you stm32CubeIDE. Tell me what the venn diagram looks like between people that code in C and C++ and people that want drag and drop heavy handed code generator "modules" they have to muck with in a weird IDE that you're suddenly tied to? Because I don't think the intersection is very big. This junk makes VB6 look streamlined. Also why does it have to be such a hassle to code ARM devices? I have two of them collecting dust because every single framework has something terrible about it that makes it unusable. All I want is to code in C++, in a framework people actually use, and one that doesn't take an hour ever time the firmware needs to be rebuilt. Apparently the people that write the toolchains for ARM find that to be too tall an order. I just don't get it. At this rate, I'm never coding for ARM Cortex-Ms.

                              Real programmers use butterflies

                              C Offline
                              C Offline
                              CPallini
                              wrote on last edited by
                              #21

                              It could be worse. It could support only C with a disastrous code editor. Cypress, can you hear me?

                              "In testa che avete, Signor di Ceprano?" -- Rigoletto

                              1 Reply Last reply
                              0
                              • L Lost User

                                I absolutely agree! I tried using STM32CubeIDE while working with a custom board using the STM32 processor. The libraries were either horrible or non-existent. We ended up hiring an electronics engineer to develop a specific framework to use with the design of the board from scratch. I don't see how this IDE and framework are used in a professional setting. It's like it's designed to teach rather than produce.

                                "When you are dead, you won't even know that you are dead. It's a pain only felt by others; same thing when you are stupid." Ignorant - An individual without knowledge, but is willing to learn. Stupid - An individual without knowledge and is incapable of learning. Idiot - An individual without knowledge and allows social media to do the thinking for them.

                                M Offline
                                M Offline
                                Member 11721025
                                wrote on last edited by
                                #22

                                Hello, I am using the MS visual studio (2019) with some external tools for compiling and linking. The tools are the .bat file invoking the GNU compiler. I am using the same construction also for the AVR processor. It is working good enough (after my opinion). The main reason to implement this system was to keep the same development tool for any application. If you need more details, contact me. Emil Motolici

                                1 Reply Last reply
                                0
                                • H honey the codewitch

                                  First of all, regarding the requirement of using code generators and drag and drop widgets to "program" in C++, can we simply not? Whoever thought that was a good idea is currently at the top of my naughty list. I'm looking at you stm32CubeIDE. Tell me what the venn diagram looks like between people that code in C and C++ and people that want drag and drop heavy handed code generator "modules" they have to muck with in a weird IDE that you're suddenly tied to? Because I don't think the intersection is very big. This junk makes VB6 look streamlined. Also why does it have to be such a hassle to code ARM devices? I have two of them collecting dust because every single framework has something terrible about it that makes it unusable. All I want is to code in C++, in a framework people actually use, and one that doesn't take an hour ever time the firmware needs to be rebuilt. Apparently the people that write the toolchains for ARM find that to be too tall an order. I just don't get it. At this rate, I'm never coding for ARM Cortex-Ms.

                                  Real programmers use butterflies

                                  D Offline
                                  D Offline
                                  den2k88
                                  wrote on last edited by
                                  #23

                                  My experiences with ARM so far are very negative: Keil makes VisualStudio 6 look futuristic, stm32CubeIDE as you say makes VB6 look streamlined (and I have a decade of experience with VB6). Also the programmers (devices, not coworkers) suck, especially the Infineon line, and they try to scam developers with incomplete devices that allow for minimal debugging (limited breakpoints, no trace...). I much preferred the Renesas microcontroller, despite MultiIDE being absolutely terrible and buggy.

                                  GCS d--(d+) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

                                  1 Reply Last reply
                                  0
                                  • C Christian Graus

                                    People still use C++? *ducks*

                                    1 Offline
                                    1 Offline
                                    11917640 Member
                                    wrote on last edited by
                                    #24

                                    Yes, of course. I will never try to write firmware in JavaScript... Actually, I prefer C.

                                    C 1 Reply Last reply
                                    0
                                    • H honey the codewitch

                                      First of all, regarding the requirement of using code generators and drag and drop widgets to "program" in C++, can we simply not? Whoever thought that was a good idea is currently at the top of my naughty list. I'm looking at you stm32CubeIDE. Tell me what the venn diagram looks like between people that code in C and C++ and people that want drag and drop heavy handed code generator "modules" they have to muck with in a weird IDE that you're suddenly tied to? Because I don't think the intersection is very big. This junk makes VB6 look streamlined. Also why does it have to be such a hassle to code ARM devices? I have two of them collecting dust because every single framework has something terrible about it that makes it unusable. All I want is to code in C++, in a framework people actually use, and one that doesn't take an hour ever time the firmware needs to be rebuilt. Apparently the people that write the toolchains for ARM find that to be too tall an order. I just don't get it. At this rate, I'm never coding for ARM Cortex-Ms.

                                      Real programmers use butterflies

                                      M Offline
                                      M Offline
                                      Matt McGuire
                                      wrote on last edited by
                                      #25

                                      honey the codewitch wrote:

                                      Because I don't think the intersection is very big.

                                      Likely only a hand full, but never the main group. Do you think this is part of the push by the industry to introduce low-code environments? if they are aiming for the average joe to be able to put together a system on something that critical, they are out of their minds. Years ago (maybe a decade now) I developed on TERN system devices, basically x86 (186,286, and 386) single board computers with 16k flash. good equipment, very stable, but very little in board packages to support all the chips, so if you wanted to use that nifty CMOS, or general IO chips that were built into the board you had to write the code to run those data lines. It was a mixed bag because they did have code snippets for touchscreens and such. I liked their products and the IDE worked great with a JTAG debugger, the community was pretty limited though, but the company I worked for decided to not pursue that direction any longer. There goes 6 months of R&D, and it was so close to a finished product, just a few more weeks of testing. Oh well, I got paid all the same. I have to say I've never gotten into ARM development, it was always at the edges of the different projects over the years. Sorry to hear about the frustration.

                                      H 1 Reply Last reply
                                      0
                                      • M Matt McGuire

                                        honey the codewitch wrote:

                                        Because I don't think the intersection is very big.

                                        Likely only a hand full, but never the main group. Do you think this is part of the push by the industry to introduce low-code environments? if they are aiming for the average joe to be able to put together a system on something that critical, they are out of their minds. Years ago (maybe a decade now) I developed on TERN system devices, basically x86 (186,286, and 386) single board computers with 16k flash. good equipment, very stable, but very little in board packages to support all the chips, so if you wanted to use that nifty CMOS, or general IO chips that were built into the board you had to write the code to run those data lines. It was a mixed bag because they did have code snippets for touchscreens and such. I liked their products and the IDE worked great with a JTAG debugger, the community was pretty limited though, but the company I worked for decided to not pursue that direction any longer. There goes 6 months of R&D, and it was so close to a finished product, just a few more weeks of testing. Oh well, I got paid all the same. I have to say I've never gotten into ARM development, it was always at the edges of the different projects over the years. Sorry to hear about the frustration.

                                        H Offline
                                        H Offline
                                        honey the codewitch
                                        wrote on last edited by
                                        #26

                                        Part of it to be honest is I misunderstood the IDE. It's not *all* visual, it's just part of it where you do the pin layouts. Still, that speaks to a larger issue. I couldn't make heads or tails of the IDE. Give me VS Code and some build scripts/toolchain to use, you know? I'm not exactly green at development, but the IDE broke my 5 minute rule. I couldn't do anything at all with it in 5 minutes. Not because the tasks were non-trivial but because I couldn't even figure out how to begin. I wanted a main.cpp to start, with maybe some headers (or docs telling me the headers) It seems like that's a lot to ask of people these days. X|

                                        Real programmers use butterflies

                                        1 Reply Last reply
                                        0
                                        • H honey the codewitch

                                          First of all, regarding the requirement of using code generators and drag and drop widgets to "program" in C++, can we simply not? Whoever thought that was a good idea is currently at the top of my naughty list. I'm looking at you stm32CubeIDE. Tell me what the venn diagram looks like between people that code in C and C++ and people that want drag and drop heavy handed code generator "modules" they have to muck with in a weird IDE that you're suddenly tied to? Because I don't think the intersection is very big. This junk makes VB6 look streamlined. Also why does it have to be such a hassle to code ARM devices? I have two of them collecting dust because every single framework has something terrible about it that makes it unusable. All I want is to code in C++, in a framework people actually use, and one that doesn't take an hour ever time the firmware needs to be rebuilt. Apparently the people that write the toolchains for ARM find that to be too tall an order. I just don't get it. At this rate, I'm never coding for ARM Cortex-Ms.

                                          Real programmers use butterflies

                                          S Offline
                                          S Offline
                                          Steve Naidamast
                                          wrote on last edited by
                                          #27

                                          Using code-generator frameworks has never been a feasible way of doing any form of coding, beyond the most simplistic of tasks. In the early 1990s (or late 1980s, I can't remember exactly), Oracle was one of the first companies to produce a sophisticated database application generator. It worked quite well. The problem was, that as the application became more sophisticated, the use of the tool became increasingly complex to use and at some point became less efficient to use than to simply code the application by hand with the use of supporting libraries. This was all the rage back then as a result of a tool called, "Magic PC", which promised the ability to create highly complex applications. Well, that didn't work out either... Promoters of such software have been at it ever since. And the new phase is "low code" software tools with prediction that it will take over a lot of coding tasks in the next 10 years. Sure it will... :^) Low-code software is the same thing that was peddled years ago but with the advent of newer AI tools (which they aren't in all reality), the hope is that such tools will finally make it into the mainstream. However, if you have seen the actual testing by scientists who work in Artificial Intelligence development and research, one finds that it our supposed AI makes a lot of seriously stupid decisions. But we are now supposed to believe that it will be able to create wonderful applications by assisting the Human coder? Sure it will... :doh:

                                          Steve Naidamast Sr. Software Engineer Black Falcon Software, Inc. blackfalconsoftware@outlook.com

                                          H 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups