Demand for the angular electric pickup has continued to falter in the first quarter, making room for a new king.

The Tesla Cybertruck has lost the top spot on the list of best-selling electric pickup trucks in the United States. After finishing 2024 as a best-seller, Tesla’s only pickup has fallen to second place in the first quarter of this year.

After the first three months, the Cybertruck had amassed 7,126 registrations. The Ford F-150 Lightning overtook it with 7,913 registrations, according to the most recent data from S&P Global Mobility. The Chevrolet Silverado EV finished the first quarter in third place, followed by the GMC Sierra EV, Rivian R1T and GMC Hummer EV.

  • frezik@midwest.social
    link
    fedilink
    arrow-up
    1
    arrow-down
    8
    ·
    12 hours ago

    You could run basic brushless motor and BMC firmware on a 99 cent 8 bit Atmel ATMega 328. That code requires almost nothing to run. It’s all the extra shit baked in that needs all sorts of processing power.

    So what you’re saying is, there’s software.

    • RedEye FlightControl@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      ·
      11 hours ago

      Technically it’s not software, it’s firmware, because it’s a microcontroller that runs code directly.

      To my point, you don’t need all the fancy bullshit that’s baked into the car, the actual control systems require very little compute power.

        • RedEye FlightControl@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          ·
          10 hours ago

          When it comes to writing code, perhaps. But specifically, I disagree on principle. There’s a big difference between Firmware embedded directly into ROM that requires nothing beyond the MCU to run, versus Software that requires both a host environment to compute it, host hardware to store and manipulate it, and IO peripherals to make it useful. Totally opposite ends of the OSI model.

          • frezik@midwest.social
            link
            fedilink
            arrow-up
            1
            arrow-down
            2
            ·
            10 hours ago

            All that comes down to abstraction. Lots of stuff has been implemented in bare metal without making the distinction. Every DOS program was almost entirely bare metal except for loading it into memory and some disk I/O.

            Firmware is just a subtype of software.

            ROM doesn’t really exist anymore except on some legacy stuff. Certainly not on the ATmega series you were talking about. At most, these things have fuses that can be intentionally burned out after flashing so they can’t be overwitten later.