Slashdot Mirror


Ford Dumping Windows For QNX In New Vehicles

innocent_white_lamb writes "Ford has announced that their in-vehicle technology called Sync will be based on Blackberry's QNX operating system and will no longer use Microsoft Windows. My own 2013 Ford Escape has the Windows-based Sync system. I wonder if they will issue an update to change it to QNX." Anonymous sources inside Ford cited reliability problems with Windows and lower licensing costs for the switch to the classic realtime OS.

58 of 314 comments (clear)

  1. Having used both by phantomfive · · Score: 5, Interesting

    They made the right decision. QNX is one of the more enjoyable embedded OSes (IMO YMMV of course).

    --
    "First they came for the slanderers and i said nothing."
    1. Re:Having used both by Anonymous Coward · · Score: 5, Funny

      Why is my mileage going to vary if they switch to QNX? Better navigation package?

    2. Re:Having used both by certsoft · · Score: 5, Informative

      The SYNC system has nothing to do with the powertrain. It's only used for infotainment and climate control.

    3. Re:Having used both by MikeBabcock · · Score: 5, Funny

      Lower power requirements :)

      --
      - Michael T. Babcock (Yes, I blog)
    4. Re:Having used both by mjwx · · Score: 2

      The SYNC system has nothing to do with the powertrain. It's only used for infotainment and climate control.

      So you're saying it'll still have a shit transmission.

      Ford seems to have their priorities seriously screwed up if that is the case. Shouldn't they make sure the powertrain works before working on the infotainment system.

      --
      Calling someone a "hater" only means you can not rationally rebut their argument.
    5. Re:Having used both by Lisias · · Score: 4, Funny

      Ford seems to have their priorities seriously screwed up if that is the case. Shouldn't they make sure the powertrain works before working on the infotainment system.

      The way I see it, Ford is doing it right. One must be entertained while awaits for rescue when the car bricks in the middle of the road! :-)

      --
      Lisias@Earth.SolarSystem.OrionArm.MilkyWay.Local.Virgo.Universe.org
    6. Re:Having used both by Anonymous Coward · · Score: 3, Funny

      beta stuxnet compatibility.............

    7. Re:Having used both by Monoman · · Score: 2

      It's not just that. Don't forget

      * Smaller footprint
      * Lighter weight

      --
      Keep the Classic Slashdot.
    8. Re:Having used both by peragrin · · Score: 5, Insightful

      That's why i buy cars built in America, Like Honda, toyota, and Nissan.

      You think I am joking. those three companies build more cars in the USA than Ford, GM and Chrylser.

      --
      i thought once I was found, but it was only a dream.
    9. Re:Having used both by Anonymous Coward · · Score: 3, Insightful

      Why is my mileage going to vary if they switch to QNX? Better navigation package?

      Those who were suckered into paying $2000 for what amounts to an in-car GPS and MP3 player should not be worried about mileage or gas costs, for their wallet navigated away from common sense long ago.

    10. Re:Having used both by PolygamousRanchKid+ · · Score: 4, Funny

      Stopping and stopping a car a lot decreases the mileage. That's why city mileage is always worse. With Windows your car needs to stop and reboot at bluescreens. With QNX you won't have that problem.

      --
      Schroedinger's Brexit: The UK is both in and out of the EU at the same time!
    11. Re:Having used both by ebno-10db · · Score: 2

      No joke at all. My wife's Toyota Sienna has 85% value added in the US (that's 85% of the cost of building it, not just final assembly). That's a much higher percentage than most American cars. Engine & tranny made in WV, assembly in Kentucky, etc.

      Why do the Japanese have more faith in American manufacturing than the "American" car companies? Maybe Motorola Mobility being bought by Lenovo is a good thing. They'll probably continue to design and build them in the US. If they'd continued under "American" ownership they'd probably have offshored everything.

    12. Re:Having used both by ebno-10db · · Score: 4, Informative

      QNX is an RTOS, Linux is not.

    13. Re:Having used both by rickb928 · · Score: 2

      "selector fork forcibly readjusted my spine"

      Stop sitting on the gearshift lever.

      You're welcome.

      --
      deleting the extra space after periods so i can stay relevant, yeah.
    14. Re:Having used both by MachineShedFred · · Score: 4, Insightful

      One word: tariffs.

      Japanese auto companies can dodge the import tariffs on completed autos if they are built in Kentucky, Indiana, Ohio, and North Carolina. American auto companies can also dodge the tariffs (and UAW strong-arming) by building them in Mexico.

      Thanks, NAFTA!

      --
      Slashdot still doesnâ(TM)t support Unicode after it was added to the HTML standard in 1997.
    15. Re:Having used both by fsck-beta · · Score: 4, Insightful

      You bought an automatic Mustang?

    16. Re:Having used both by ebno-10db · · Score: 4, Interesting

      Linux is an RTOS as long as you select the proper configuration.

      No, it's not. They've done some very clever things to reduce Linux response latency, but it's not deterministic, and hence not (hard) real-time. I add the word "hard" only because some people have mistakenly conflated real-time with responsive, leading to the oxymoronic term "soft real-time". Also, even with the clever mods Linux's latency is much longer than many RTOS's.

      I love embedded Linux, but if you need an RTOS, it's not the right tool.

      BTW, why would Android even need to be an RTOS? What purpose would it serve?

      And for entertainment based systems, you don't really need RTOS - just a reasonably fast system.

      Yes. I only mentioned RTOS's to counter the common notion that there can be a universal OS for embedded work.

    17. Re:Having used both by LoRdTAW · · Score: 4, Informative

      RTOS implies determinism, the ability to execute things in a timely manner. That means prioritizing interrupts and allowing high priority threads and processes to preempt the kernel and other core OS processes or threads. Many people mistake real time for processing something as it arrives into the computer e.g. a near latency free video image on screen from a camera or reading a stream of GPS coords from a serial port. Lets go with the camera example. While this sounds like real time, there is no software or hardware that guarantees that the image software and camera driver will always deliver an image to the screen in a guaranteed and timely manner. For example if you start the camera application and you play a video game, does the "realtime" video application retain its low latency? Or will it stutter as its process fights for CPU time with the video game process as the OS sees fit? In a true RTOS, the video software AND driver TELLS the OS their priority and the OS obeys. They can be assigned a high priority so any other software will have to wait until there is spare CPU time.

      Linux has two routes to achieve this:
      CONFIG_PREEMPT_RT
      Patches to the Linux kernel which removed the various locks in the kernel (aka big kernel lock) which allows a process to be prioritized over the kernel itself. IRQ's are also prioritized. You can run various processes and assign them a priority.

      Xenomai
      Xenomai is a dual kernel approach where a vanilla Linux kernel is patched with Xenomai. It creates a separate kernel that allows its processes to preempt the Linux kernel and takes over handling interrupts through the I-pipe. This means all interrupts are handled by the Xenomai kernel and if an interrupt is destined for the Linux kernel, Xenomai passes them as a virtual interrupt. Xenomai also features its own HAL allowing hardware to be dedicated to Xenomai processes via RT drivers. You can also do things like dedicate a processor core to a specific task to guarantee there is ample CPU time. And Xenomai has a neat little trick, its kernel is a nucleus which can run various "skins" which are API's; e.g. you can use RT code using Native, POSIX, uITRON, VxWorks and a few other RT API's.

      YMMV but both solutions have tradeoffs. There is a paper published (https://www.osadl.org/fileadmin/dam/rtlws/12/Brown.pdf) which compares the two popular Linux RT solutions. Preempt_rt is easier to implement as it is part of the mainline kernel, you only need to include a few headers and some gobals to define the process priority. But in tests it shows higher timing jitter than Xenomai. If you want maximum performance, then you need to look into Xenomai which requires a bit more setup, patching and using the various API's and RT hardware drivers.

      BTW, Windows also has RT dual kernel systems. So yes even windows can be an RTOS. Look up Ardence RTX and INtime.

    18. Re:Having used both by UnknowingFool · · Score: 3, Interesting

      That's really not the only reason for them to build in the US and not Japan. Yes, tariffs are higher if imported from Japan but so are costs. Manufacturing and shipping costs are higher in Japan. In terms of manufacturing, realize that Japan is a small island and that they import much of the raw material from other countries (like the US) to build the cars. Japan also imports much of their energy so energy costs are higher. Then after the vehicle is built, the cost to ship the assembled vehicle to the US are higher than within the US. For this reason the luxury Japanese cars are still built in Japan as they command higher prices to offset higher costs.

      The main difference in the US I see is that the Japanese automakers built their factories in non-union states and do not have the same labor costs. Detroit had the same option as the Japanese companies but instead decided to go to Mexico to reduce labor costs further. For whatever you think of Michael Moore personally, his early documentary, Roger & Me cast a light on what was wrong with the American auto industry. Their pursuit of more profit has decimated Detroit as well as turned generations of loyal customers and workers against them.

      --
      Well, there's spam egg sausage and spam, that's not got much spam in it.
    19. Re:Having used both by praxis · · Score: 3, Insightful

      I don't care if it takes me 2 seconds or 0.2 seconds to shift gears. That's not the performance I need from my car. What I need from my car is being able to downshift *prior* to needing to accelerate, like when anticipating a merge. What I need from my car is being able to use the clutch to apply just the right amount of power to the wheels to get traction on slippery surfaces, like when pulling out of an icy parking spot over snow onto a plowed road.

      You are correct though, that a computer can control the clutch more quickly than I can, but it doesn't see (yet) when I need power and downshift before I need it or how to apply just the right amount of power to gain traction on surfaces that are not uniform (again, yet).

    20. Re:Having used both by holmstar · · Score: 2

      The automatically controlled clutch may be faster, but there's just something about doing it yourself that makes you feel more connected with the car, and just plain more enjoyable to drive. Plus, there's no nanny to get in the way. It would drive me crazy if I requested a shift and it refused, or if there was a noticeable delay.

  2. QNX 6 by Anonymous Coward · · Score: 2, Insightful

    I miss QNX 6, damn you Blackberry!

  3. Obligatory by Neo-Rio-101 · · Score: 5, Funny

    http://www.hcs.harvard.edu/pnw...

    For all of us who feel only the deepest love and affection for the way computers have enhanced our lives, read on. At a recent computer expo (COMDEX), Bill Gates reportedly compared the computer industry with the auto industry and stated, "If GM had kept up with technology like the computer industry has, we would all be driving $25.00 cars that got 1,000 miles to the gallon."

    In response to Bill's comments, General Motors issued a press release stating: If GM had developed technology like Microsoft, we would all be driving cars with the following characteristics:

    1. For no reason whatsoever, your car would crash twice a day.

    2. Every time they repainted the lines in the road, you would have to buy a new car.

    3. Occasionally your car would die on the freeway for no reason. You would have to pull to the side of the road, close all of the windows, shut off the car, restart it, and reopen the windows before you could continue.

    For some reason you would simply accept this.

    4. Occasionally, executing a maneuver such as a left turn would cause your car to shut down and refuse to restart, in which case you would have to reinstall the engine.

    5. Macintosh would make a car that was powered by the sun, was reliable, five times as fast and twice as easy to drive - but would run on only five percent of the roads.

    6. The oil, water temperature, and alternator warning lights would all be replaced by a single "This Car Has Performed An Illegal Operation" warning light.

    7. The airbag system would ask "Are you sure?" before deploying.

    8. Occasionally, for no reason whatsoever, your car would lock you out and refuse to let you in until you simultaneously lifted the door handle, turned the key and grabbed hold of the radio antenna.

    9. Every time a new car was introduced car buyers would have to learn how to drive all over again because none of the controls would operate in the same manner as the old car.

    10. You'd have to press the "Start" button to turn the engine off."

    --
    READY.
    PRINT ""+-0
    1. Re:Obligatory by jd2112 · · Score: 5, Funny

      10. You'd have to press the "Start" button to turn the engine off."

      Actually, I do press the 'Start' button to turn the engine off on my car. (Nissan Altima with keyless ignition)

      --
      Any insufficiently advanced magic is indistinguishable from technology.
    2. Re:Obligatory by jrumney · · Score: 5, Funny

      10. You'd have to press the "Start" button to turn the engine off."

      Cars do seem to be catching up with Windows on that one at least.

    3. Re:Obligatory by BigDXLT · · Score: 2

      I know someone came up with that list to be snarky, but I'm fairly sure I've experienced everything in that list at one point or another with vehicles over the years.

      Yup, including pressing the start button to turn the engine off. :/

    4. Re:Obligatory by Nutria · · Score: 3, Insightful

      6. The oil, water temperature, and alternator warning lights would all be replaced by a single "This Car Has Performed An Illegal Operation" warning light.

      It's called the Idiot Light, and has been around for decades.

      --
      "I don't know, therefore Aliens" Wafflebox1
    5. Re:Obligatory by bloodhawk · · Score: 2

      Just about all those faults sound pretty standard in most GM cars. If it was ford the list would be even longer. funny how a joke from the 90's has actually turned on its head as tech has advanced, most OS's would be appalled to be as unreliable as most of the shit being churned out from GM or ford today.

    6. Re:Obligatory by mwvdlee · · Score: 2

      Coincidentally, it's the only thing on the list Microsoft has changed.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    7. Re:Obligatory by Karellen · · Score: 2

      The oil, water temperature, and alternator warning lights would all be replaced by a single "This Car Has Performed An Illegal Operation" warning light.

      If only! Then Microsoft would finally start catching up with Unix, which got there first (as always):

      Ken Thompson has an automobile which he helped design. Unlike most automobiles, it has neither speedometer, nor gas gauge, nor any of the other numerous idiot lights which plague the modern driver. Rather, if the driver makes a mistake, a giant “?” lights up in the center of the dashboard. “The experienced driver,” says Thompson, “will usually know what’s wrong.”

      -- The Unix Haters Handbook, Chapter 2 (p.17)

      --
      Why doesn't the gene pool have a life guard?
  4. MSFT seems to work... by Etherwalk · · Score: 4, Interesting

    I rented a Ford Fusion a few months back. The MSFT in-vehicle tech worked perfectly well.

    I know it's anecdotal, and I'm all for competition, but I wonder if this was a good decision. When the car company cites licensing costs that can't be much per vehicle as a reason to change a technology, you begin to feel they're cutting corners.

    1. Re:MSFT seems to work... by drinkypoo · · Score: 3, Informative

      I know it's anecdotal, and I'm all for competition, but I wonder if this was a good decision. When the car company cites licensing costs that can't be much per vehicle as a reason to change a technology, you begin to feel they're cutting corners.

      Well, did you RTFA? Because that would give you a clue as to the logic behind such a move:

      In-vehicle technology is the top selling point for 39 percent of auto buyers, more than twice the 14 percent who say their first consideration is traditional performance measures such as power and speed, according to a study by the consulting firm Accenture released in December.

      See, Ford is going to put this sort of system in every car, sooner or later. There's no good excuse not to when you can get a tablet for a hundred bucks retail. Sure, vehicle electronics have higher requirements, make it a hundred bucks cost, a $400 (replacement) module and a $650 option and you're printing money. Cheaper and cheaper cars are now coming with iPod integration, bluetooth and so on, and sooner or later it's going to be every single car. How much do those licensing fees add up to?

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    2. Re:MSFT seems to work... by Tom · · Score: 4, Informative

      Costs are almost always a cover reason. It's what you say when you don't want to put out the real reasons.

      For example, Ford almost certainly has an ongoing business relationship with MS, for their office PCs, maybe they use Outlook, etc. - they probably don't want to sour that by saying in public that their car-OS is crap.

      --
      Assorted stuff I do sometimes: Lemuria.org
  5. I'm just scared shitless by aybiss · · Score: 2

    that anyone would use Windows for embedded/realtime. Is it easy to discover this for other makes of cars?

    --
    It's OK Bender, there's no such thing as 2.
    1. Re:I'm just scared shitless by aussiedood · · Score: 5, Informative

      Windows Embedded has powered the ECUs in all Formula 1 cars (arguably the most technologically advanced race cars in the world) since 2008.

    2. Re:I'm just scared shitless by Anonymous Coward · · Score: 2, Informative

      I had a flight where the entertainment system displayed RedHat 6.x (old one, not RHEL) boot messages repeatedly for three hours. Very entertaining.

    3. Re:I'm just scared shitless by serviscope_minor · · Score: 2

      Isn't that because MS were selected as the sole supplier of ECUs by the FIA? Something makes me suspect the decision was made on how much the FIA were paid, rather than on the merit of Windows an an RTOS.

      --
      SJW n. One who posts facts.
    4. Re:I'm just scared shitless by TechyImmigrant · · Score: 2

      A very real time control system I designed for an F1 car rebooted about every 60ms, by design.
      If there was some combination of conditions that screwed the pooch, it's ok. The conditions would change and the thing would reboot within 60ms.

      Reliable systems have to cope with the idea that software is unreliable.

      --
      I should use this sig to advertise my book ISBN-13 : 978-1501515132.
  6. good thing ford does not make boats by TheGratefulNet · · Score: 5, Funny

    Ford has announced that their in-vehicle technology called Sync

    --

    --
    "It is now safe to switch off your computer."
    1. Re:good thing ford does not make boats by mjwx · · Score: 3, Funny

      Ford has announced that their in-vehicle technology called Sync

      Actually the Australian produced Ford Falcon, handles like a boat.

      --
      Calling someone a "hater" only means you can not rationally rebut their argument.
  7. experience by Anonymous Coward · · Score: 5, Informative

    I rented a for focus, and drove it for about 2 months, the MSFT stuff installed in it was a total piece of junk. It would crash, hang,
    and reboot in the middle of navigating to the destination, just like a windows PC.

    1. Re:experience by UltraZelda64 · · Score: 2

      Well, at least it seems like they got the traditional Windows user experience right... they should at least get credit for that. It's nice to know that there is consistency between their products, so you can know what you're getting (into) ahead of time... even if the shared traits are 95% undesirable.

  8. F/OSS Platform Needed by ModernGeek · · Score: 2, Interesting

    We need a better F/OSS Platform for this type of development. I would like to see something like GNU/Hurd finally come to fruition and become the one true operating system for embedded devices, upward to desktop/server. With the Mach Kernel, it stands to actually give us a unified kernel that can serve all these purposes without being a giant, sluggish monolithic blob. Once that platform is complete, everyone else can throw their own interfaces and such on top of it.

    Android is defective by design, and Ubuntu's solution is right up there with it. QNX is where it's at, but we need a Mach based F/OSS alternative.

    --
    Sig: I stole this sig.
    1. Re:F/OSS Platform Needed by armanox · · Score: 4, Insightful

      And it would never sell. Really what we need is something like iOS/OS X running on it - everyone knows the interface, you don't have to play with it, it doesn't randomly fall over, and the applications are locked down. Android's mistake is being too fragmented - different features by different carriers. I don't see how Ubuntu is defective by design either. Consumers want something that works, and does what they want it to do. They don't care about ideological arguments over licenses.

      --
      I'm starting to think GNU is the problem with "GNU/Linux" these days.
  9. That'll fix half of the problem by swillden · · Score: 4, Interesting

    QNX is clearly a better choice for a system that should just work, all of the time. However, I doubt it's really all that unreliable, and the bigger problem with Sync is that the UI is horrible, among the worst I've ever seen. I've had a couple of rental cars with it, and the last time Hertz offered me a Ford, I told them I wanted a different car, it's that bad. And the UI isn't Microsoft's fault, I don't think.

    --
    Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
  10. Cheaper, really? by jhol13 · · Score: 5, Interesting

    I wonder if it is really true. I'd assume that full fledged OS with all the stuff included would be better infotaintment system than QNX.
    As I do not know which version of "Windows" they use, suppose they used Android. Now they would get, for free without any development costs or time, bluetooth, wifi, 3G, UI, development tools, etc. The system would work as a bluetooth handsfree[1]. The system would, with a SIM, work as a wifi-hotspot. You would get Google Maps, i.e. navigation. Games from Play store. Etc, for free (or the price of Android if they want maps&play).

    With QNX, what do they get?

    [1] I assume Android can work as a bluetooth "device", not only as a "host".

    1. Re:Cheaper, really? by narcc · · Score: 4, Interesting

      With QNX, what do they get?

      All of those things and a superior OS?

      Oh, sorry. That's not what you wanted to hear.

  11. Hope there's an upgrade by sobiloff · · Score: 2

    I have SYNC in my 2013 F-250 and it blows. It keeps trying to re-index my SD card, so I can rarely use the voice commands to play music from it, and sometimes it'll switch by itself from playing SiriusXM to playing the SD card. It's also slow to respond sometimes (probably an artifact of it trying to re-index the SD card), and the UI to select music from the SD card is cumbersome.

    I guess most of my gripes are about the SD card functionality; the rest of the functionality seems to work OK when it isn't being screwed over by the SD card, but again I find the interface cumbersome to use. For example, scrolling through the SiriusXM stations takes way too many taps.

    My hope is that QNX, given its history as an RTOS, will be more responsive and robust. It might even give the developers a chance to improve the UI.

  12. Sync was so bad.... by EmperorOfCanada · · Score: 4, Interesting

    Sync was so bad that I wouldn't buy a Ford. I rented a handful of 2013 model Fords with the Sync system. I had an iPhone 3GS and an iPhone 4. The stupid Sync system was a huge battle. Syncing just wasn't a clean process. It did work but smooth as silk is not how I would describe it. But then it got worse. It asked if I would like to set up the emergency something. I presume this was an automated 911 call if I crashed. Well actually no I don't want the computer calling the police; I'll make phone calls of that nature thank you very much. And in today's world it is unlikely that if I were to crash that there aren't 200 people with cellphones that will call anyway. But lastly the system was so crappy I doubt that it would call 911 but would call 912 or 999 thinking that we were in the UK.

    But you are probably thinking no big deal opt out and you are fine. But nope after opting out, every time the stupid car started a woman's voice would blah blah about the emergency system not being activated. I looked in the manual and found no solution, so I went on the net and found no solution. So there is no way on earth that I would buy a Ford. Plus my sister had minor damage (but enough to partially disable the car) in a recent model fusion hybrid that took nearly 5 months to get the parts in. So she was out a near new car for 5 months; the whole point of buying a new car vs nursing a 10 year old car along is that the new car saves you the stress of breakdowns and any maintenance issues that cost anything or at least are hard.

    But now Ford is leaving the abusive relationship they no doubt enjoyed with Microsoft and now they are getting into bed with the $2 whore that they found in a Ottawa brothel. I couldn't think of a technology company (after leaving microsoft) that I would rather partner with less than Blackberry. I fought with their stupid Playbook tablet and I have watched people fight with their stupid new QNX phones. I know people who are long term BB customers (often via work) who deeply resent the latest models. So why would you pick a company that is on the rocks and that people respect less than the aforementioned $2 whore?

    But oddly enough the main reason that I think that QNX is a complete bowl of stupid is that I have known exactly one programmer who loved QNX and he was a useless tool. Actually worse than a useless tool; he was one of those developers that management thinks is a rocket surgeon but all he does is make things way worse. So if he tells you to cut the blue wire, not only should you not cut the blue wire but you should assume that cutting any wires is probably the exact wrong thing to do. So keep in mind that this tool probably thinks that QNX in a Ford is a cool idea.

    1. Re:Sync was so bad.... by narcc · · Score: 2

      I fought with their stupid Playbook tablet and I have watched people fight with their stupid new QNX phones. I know people who are long term BB customers (often via work) who deeply resent the latest models.

      Odd, my experience has been completely different. My wife loves her PlayBook and Z10. Everyone I've shown either device to has been impressed. The slick UI, solid hardware, and fantastic dev tools ... I don't know what anyone could possibly complain about!

      But oddly enough the main reason that I think that QNX is a complete bowl of stupid is that I have known exactly one programmer who loved QNX and he was a useless tool.

      Consensus on Slashdot is meaningless, I know, but the sentiment here is quite clear: QNX is an excellent OS. What, specifically, do you dislike about it?

    2. Re:Sync was so bad.... by EmperorOfCanada · · Score: 2

      I'm not joking when I say that I don't like QNX because a guy I worked with who was a mega tool loved it so much. Basically he was exactly wrong about everything. His entire life is a logical not.

      To give an example, Nortel hired him so I told people who were invested in Nortel that they needed to sell their shares immediately (which all but one did, also not insider information as he posted this on his personal website). Any hiring process that didn't screen out this living parasite of oxygen was a deeply flawed process. Within maybe 3 months Nortel was in serious trouble. This guy later became a blackberry server expert; a sure sign that blackberry (riding high at the time) was in serious trouble.

      So it might seem petty of me to not even look at QNX but it just that this guy is has a near superpower for getting involved with the exact wrong solution just before it explodes or is just always has been wrong.

      But to be more analytical, Blackberry has always made fairly good technological things but they seem to focus on the wrong things. Their products, for instance, seem to have been built to please the telcos and big companies. This might seem like good business on the surface but the reality is that they are now selling well under 1% in the US. Without focusing on the consumer they were damaged by the first company that really did (Apple) and then finished off by all the subsequent companies(Samsung, HTC, etc) that realized that apple's customer focus was a good idea worth emulating. So I can envision a Ford computer system that when demonstrated will potentially rock our boats and the press will write things like "redefines the car computer interface." but once the reviewers get their own hands on it the lines will be more like "Takes the worst aspects of the iDrive and mixes in the worst aspects of Tuberculous."

      On top of all that will Ford be able to keep Blackberry from taking one more kick at the can and somehow favour Blackberry phones as it seemed the early Sync system favoured Microsoft phones?

      A great measure of the Playbook's true rating (in that people are still religeous about their RIM crap) is that one group found that almost zero people switch from a modern tablet to the playbook and those who did went back. And that everyone who switches from the playbook to another tablet stays away from RIM. The same with BB phones. This is well evidenced by their market share. I suspect that there will be a goodly number of diehards who will have to have their BBs pried from their dead cold hands but why would Ford think that such a tarnished brand is something they should associate themselves with?

    3. Re:Sync was so bad.... by Megol · · Score: 2

      I'm not joking when I say that I don't like QNX because a guy I worked with who was a mega tool loved it so much. Basically he was exactly wrong about everything. His entire life is a logical not.

      Well you _do_ sound like a mega tool too.

      (snip off topic rantings)

      So care to tell us what that irrelevant drivel have to do with the quality of the QNX OS? Nah, I'll spare you the effort: Nada, zilch, nothing, nil, nichts.

  13. Re:Ford Explorer by Concerned+Onlooker · · Score: 5, Funny

    Yes, a tired one.

    --
    http://www.rootstrikers.org/
  14. Windows? by xfizik · · Score: 3, Interesting

    Who was the genius that decided to go with Windows to begin with? Don't get me wrong, Windows is fine on desktops (traditionally) and servers (more recently), but using it for essentially embedded development would be my very last choice.

  15. Tenths of a cent, my friend by Anonymous Coward · · Score: 2, Insightful

    Carmakers optimize costs at sub-one-cent levels. "Can't be much" is the antithesis of the automotive beancounter mantra.

  16. Re: Have you driven a ford lately? by jo7hs2 · · Score: 3, Informative

    They're not THAT good. The valve body in my Ford Fusion's transmission (6F35 6-speed auto) wore out the pressure regulator valve, but Ford's initial solution was to update the software, so by the time they caught it the clutch pads (yes, automatics have clutches) had started to wear. At 10k miles the transmission required a rebuild including all new clutch pads, a new set of gears on the output side to the differential, and a new valve body. That said, it is a very clever transmission and the car otherwise completely satisfies me. But not *quite* as reliable as my rock-solid 2002 Taurus. But then, the Taurus wasn't using a new transmission design. The 6F35 was only three years old in 2012, and Ford usually takes a few years to get a new transmission worked out.

  17. Re:I have a 2013 Ford Fusion with the SYNC system by laffer1 · · Score: 2

    But will the real slim shady please play back!

  18. Sync is on my Focus by RNLockwood · · Score: 3, Informative

    I was really apprehensive when I discovered that Sync was powered by Microsoft after I purchased my Focus two years ago, and rightfully so. What did MS know about maps and routing? On reading the article's subject my first thought, too, was I wonder if there will be an update: probably not.

    Here are a few examples.

    Found that the voice commands lacked synonyms so one had to conform to Sync.

    It would lock up quite often for no apparent reason and the only way to re-boot it is to go to the side of the road, park, turn the ignition key to off, and then open the door for a few seconds. One could then restart and it would re-boot.

    On the occasions when I needed routing my wife and son would be reduced to hysterics as I tried to get it to give directions to the intersection of, say, Laguna Canyon Road and Pacific Coast Highway. It appeared that it didn't like street names of more than one word in this context.

    Use voice commands to make a call (this and some other errors of the type were repeatable) "Call Jenny Rechel home". Response was "No home number for John Litton, cell or work?"

    I took it to the dealer twice and got updates that have stopped the lockups and can now use it to call Jenny but some other, more fundamental, problems persist.

    --
    Nate