• Jesus@lemmy.world
      link
      fedilink
      English
      arrow-up
      50
      arrow-down
      1
      ·
      22 days ago

      Depends on the manufacturer. A lot of American and European “smart” cars work fine without an internet connection. You need to use a key fob, and apps cloud maps or streaming apps obviously won’t work, but the basic driving, climate, and media stuff should work.

      A lot of American and European cars actually kill your cloud service access if you don’t keep paying a subscription fee.

      • Gork@lemm.ee
        link
        fedilink
        English
        arrow-up
        63
        arrow-down
        1
        ·
        22 days ago

        I have zero use for a cloud connected car lol.

        • KairuByte@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          34
          ·
          22 days ago

          Cloud connected cars are essentially what happens when companies refuse to admit smart phones are superior for 99% of the stuff they want their car to do, and the other 1% is subscription bullshit.

      • RubberDuck@lemmy.world
        link
        fedilink
        English
        arrow-up
        7
        ·
        22 days ago

        I think they keep an IOT connection alive to get the data they need from the car, they just kill your enjoyment of it. What happens if it would truly drop, your guess is as good as mine.

        And that is with vested manufacturers. With startups it could be much worse.

      • AmbiguousProps@lemmy.today
        link
        fedilink
        English
        arrow-up
        22
        arrow-down
        4
        ·
        edit-2
        22 days ago

        Absolutely, in that the more software in a vehicle, the more likely it is to brick once a company folds. ICE cars are less likely since they don’t have most of the software, but there are some that are computers on wheels still (and I’m sure the amount will continue to increase).

        • UsernameHere@lemmy.world
          link
          fedilink
          English
          arrow-up
          13
          arrow-down
          1
          ·
          22 days ago

          ICE vehicles have more software because they have more components. They have a transmission control module and an engine control module both of which have a lot of sensors to read and outputs to control. Much more than a simple EV would have.

          • Aceticon@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            arrow-down
            1
            ·
            21 days ago

            In my experience (mostly as a hobbyist and not in cars), embedded systems software (i.e. running in microcontrollers) is way smaller than the kind of stuff running in entertainment systems which require the power of microprocessors.

            It’s pretty much an entirelly different class of software and even the libraries used are done with entirelly different primary objectives (generally small size is more important than just about everything else in the embedded system world).

            ICE cars will have more microcontrollers (all communicating with each other via CAN), but the sofware within most of them is something that fits a few tens of KB of memory, whilst the software managing the used interface even if the screen is only 1024x768 (which looks like crap even compared to the cheapest of smartphones), will be tens of hundreds of megas worth of code + data.

            • UsernameHere@lemmy.world
              link
              fedilink
              English
              arrow-up
              1
              arrow-down
              1
              ·
              21 days ago

              Right but both EVs and ICE vehicles have infotainment systems. ICE vehicles have more components that require software in addition to that.

              • Aceticon@lemmy.world
                link
                fedilink
                English
                arrow-up
                2
                arrow-down
                1
                ·
                edit-2
                21 days ago

                My point is that vehicle control software that ends up in centralized systems tends to be bigger because the philosophy of making software for embedded systems (not just the core program but also libraries) is very different than that for systems with microprocessors: embedded systems with microcontrollers tend to have a few tends of KB of program memory per computing node and hence don’t even have an OS most of the time and the programs have to be coded to fit there as do the libraries, whilst the same functionality implemented in a centralized system alongside with that for things like UI touch controls, route navigation, audio system control, interfacing with smartphones and so on (doesn’t even need to include infotainment), tends to have more lines of code to do the same thing and use big libraries simply because there is no real memory size pressure on coders to make the programs ultra small and use tiny libraries.

                So the paradox is that if you add more processing nodes to a system (such as in a car) in the form of microcontrollers and move some functionality to run there rather instead of in the central more powerful computing node, you will probably end up with fewer lines of code purelly because the software design philosophy for microcontrollers emphasises smaller size and less overhead (hence why they don’t usually have an OS), whilst that for systems with actual microprocessors does not hence the software tends to be a lot more bloated.

                (The complaint from older software programmers that software nowadays is much more bloated is true. However microcontrollers are like the microprocessors of 30 years ago - say 4KB RAM, 64KB storage flash memory and a 40MHz clock - so the code for those is till forced to be done lean and mean, otherwise it wont fit or perform)

                So if you measure “amount of software” by “code size”, then ICEs will have less software because they tend to use a distributed system design with lots of small computing nodes, for historical reasons (they existed back in the days when electronics was moving to using software running in microcontrollers instead of discrete logic in hardware or PLAs) and possible also because some of the things they have to do which are not required for EVs (such as injection control) have very tight time constraints and the best way to make sure your software reliably works with ms or sub-ms margins is to not even have an OS and coding that software to be small with very tightly controlled code execution in something like C and even with ASM for more critical stuff.

                However if you measure “amount of software” by “number of individual functionalities it covers” (so, roughly, the number of programs in the whole system), then your are correct that all else being the same ICEs have more software because more functions have to be covered to control an ICE system.

                • UsernameHere@lemmy.world
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  arrow-down
                  1
                  ·
                  21 days ago

                  Right, the centralized control systems that get bloated with software are not unique to EVs. Like I said. And those centralized control systems have more inputs and outputs to interact with on an ICE than on an EV because an ICE has more components.

                  I’m not a hobbyist. I was a master automotive mechanic for over 20 years and I am now a software developer. I feel the need to say this because you are restating the same points I already address in a more verbose way as if you are hoping to make it sound too complicated for the average person to refute.

                  • Aceticon@lemmy.world
                    link
                    fedilink
                    English
                    arrow-up
                    1
                    arrow-down
                    1
                    ·
                    21 days ago

                    You misinterpreted my intention - that’s how I normally present things from my domain of expertise and I was actually making an effort to simplify it and not use too much domain specific slang.

                    Since you’ve pulled the expertise card out, I’m a Technical Architect with 30 years experience in software engineering, having working all the way up from a software developers, in several countries, several domains of software engineering and even for several industries, and amongst other things that includes Android, iOS, Linux-based and Windows-based systems, both frontend and backend, which is applicable for modern centralized user control systems for cars as well as infotainment systems, and those are just a fraction of the kind of areas in software design and developement I worked in.

                    I only said I was a hobbyist very specifically in embedded systems software because even though I have an EE degree and have 3 decades of professional experience in other software development domains, I only ever did software for embedded systems for fun - though I have some years of it - not for work, and I was hardly going to claim I was a bloody professional in a specific domain of software engineering were I did not work as a professional.

                    So yeah, if there’s something I know about is how the number of inputs and outputs influences the size of the code (very little, as that’s not were the complexity lies) and how software running in weaker computing units is way smaller and much more optimized than software running in powerful computing units because the very software developers themselves (at all levels, including OS and libraries) learn from experience very different lessons about how much time they should spend making their code small and tight when they are working with weaker processing units versus working with powerful processing units.

      • NarrativeBear@lemmy.world
        link
        fedilink
        English
        arrow-up
        9
        ·
        22 days ago

        Maybe just in terms of their electronics, such as updates and extended services.

        I do wonder if things like heated seat subscription in EV’s and ICE car’s will keep functioning after the company disappears.

        • The Pantser@lemmy.world
          link
          fedilink
          English
          arrow-up
          13
          ·
          22 days ago

          Seems like that is ripe for a class action. If a piece of hardware ceases to function if you don’t pay a fee but then the ability to pay is denied or removed the hardware should default to functioning. Come on EU, this is right up your alley, let’s get some laws made over there so us lowly Americans can benefit!

          • bizarroland@fedia.io
            link
            fedilink
            arrow-up
            10
            ·
            22 days ago

            It’s not even a difficult law to pass, “if a cloud service goes out of business, its software becomes public domain. If the company is acquired, the sale must include a promise to keep the services operational for the full lifetime of the product unless the software is public domained”

            • can@sh.itjust.works
              link
              fedilink
              English
              arrow-up
              8
              ·
              22 days ago

              The difficulty is in explaining what any of that means to the people who make the laws.

            • AA5B@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              ·
              21 days ago

              The difficulty would be enforcing this when the entity legally no longer exists

              • JJROKCZ@lemmy.world
                link
                fedilink
                English
                arrow-up
                2
                ·
                21 days ago

                Go after the owners of the company, stop letting people hide behind these companies they can start with $100 and 20 minutes online when they commit crimes

                • AA5B@lemmy.world
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  ·
                  edit-2
                  20 days ago

                  I think it’s kind of the opposite direction. Picture a company that exists and is profitable, say a gas station. Eventually they realize how much groundwater they’ve contaminated and that they can’t pay it, so go out of business. They no longer exist. Certainly any bond posted for cleanup will be seized but that’s never enough. Then there’s nothing of value left to seize, nor are their affairs held long enough to determine the scope of the problem. Then by the basic rules of corporations, there’s no one left to sue, to recover from

                  Sure, if it were a sham company you may be able to legally go around that, but the point is that many legit companies will go out of business, leaving a mess for taxpayers