Sunday, August 4, 2013

2010 Ford Flex Power Liftgate Won't Open or Close, SYNC Stops Working

If you have the following symptoms with the power liftgate:
  • With liftgate closed, try to open it with the liftgate buttons or the keyfob.  The gate will open about six inches, and then give up, slamming shut.
  • When open (manually), the gate will refuse to close from any of the liftgate buttons or the keyfob.
  • When closed (manually), the gate will refuse to latch completely.  (You will not hear the latching sound you normally hear when the gate is closed).
  • Driver information center indicates that liftgate is open when it is in fact closed.
  • Interior lamps stay on when all doors are closed because it thinks the rear liftgate is open.  (The lamps will shut off after driving away.)
    • Workaround:  Rotate the instrument cluster dimmer to the lowest position, until it clicks -- this will force all of the interior lamps off.  This is also useful if you're tailgating and you don't want the interior lamps on.
It seems that it's possible that the liftgate can forget the learned open and closed points.  It even mentions this in the manual.  See this post on the Ford Flex forum.

At the same time this issue happened, the voice command button on the steering wheel (the button for SYNC) stopped responding.  My phone would not detect the SYNC Bluetooth connection and for all practical purposes it seemed that SYNC was not working at all. 

The solution to both problems:
  • Close the liftgate manually.  
  • Disconnect the battery for 20 seconds.  
  • Reconnect the battery.  
  • Make sure the power liftgate is enabled in the vehicle setup.  
  • Start the vehicle.
  • Open the liftgate with the keyfob or any of the liftgate buttons.
  • Wait at least one minute for SYNC to boot up, and see if the voice command button starts working again.




I may have gotten lucky, but this solved both the SYNC issue and the liftgate issue in my vehicle.


Monday, May 6, 2013

USB to Serial (Prolific 2303) Device Cannot Start (Code 10) in Windows 8/8.1/10

Is this a rare situation where a piece of legacy hardware works fine in Linux and is broken in Windows??

The Prolific 2303 works perfectly fine in Linux Mint.  Yet, for some reason, Prolific says that some of these chips have reached the end of life and won't be 'supported' under Windows 8.  Prolific suggests that you purchase their updated chipset (PL2303HX Rev D):


So, what is different about the newer chips that they *can* be supported in Windows 8, while the older ones can't?  What has changed in Windows 8 that makes this support different?

Here's the yellow triangle with exclamation point that you'll see:


And here is the "Code 10" error:


Fixing it:  Some clever people have figured out workarounds for this issue.

Get this file: Profilic_Win8_x64_x86.zip   (Google Drive link here.)

Extract the contents of this file somewhere and examine the contents:


Right click the .inf file, and select "Install".


I didn't notice that anything happened when I ran it.  Probably because I've tried so many different drivers and installations; maybe it was already installed, I don't know.

Got back to the device manager and right click the Prolific USB to Serial comm port, and click "Update Driver Software".


In the resulting dialog, click "Browse my computer for driver software":


Select "Let me pick from a list of device drivers on my computer":


Select the Prolific driver version 3.3.2 from 2008:


Win.


If all went well, you'll no longer see the yellow triangle:


h/t to the original post at Microsoft's Technet forum by user drtedrted.

Saturday, May 4, 2013

Windows 8 + Linux Mint UEFI Dual Boot Follow Up: When things go wrong.


Your BIOS setup may look different from this, but this is what mine looks like when it works the way I want (dual boot via Grub):

My BIOS "Boot" Configuration
Notice the first item called "mint".  This guy disappeared once after a Windows update.  In order to get it back, you may have to add it again.  Notice the option "File Browser Add Boot Option" in the screen above?  Select that option and you should get something that looks like this:

Dell file chooser
This is just a primitive file picker.  Above is a list of partitions on my machine.  You can select any one you want and see what is in there.  Then one you're looking should have contents like this:


Under <linuxmint> you should see this:


The grubx64.efi file is the one you want, this one will start Grub on boot.  Once you've selected this file, you will probably be asked to name the new boot configuration.  You can call it whatever you want.  Once you've given it a name (I called it "mint"), you will want to make it the first boot priority as in the first photo of this article.

Another problem I ran into once (again after a Windows 8 'update') was messed up partition flags.  Here is what my "working" partitions look like:


I've highlighted the partition flags at right.  You will of course need to know what you're doing if you start messing with these.  The important flags are "boot", which is on /dev/sda1 here, and the "msftres" flag which is on an 'unknown' chunk of the disk.  Make sure these are set properly.

Finally, when things really go wrong and you can't boot into Windows 8 anymore, you may need a Windows 8 rescue image.  This can be generated from a working copy of Windows -- even a working copy from a friend that has Windows 8.  If you can't find a friend that has it, maybe you can go to a local computer store and get one made...  You just need an 8GB USB memory stick.  I had to borrow one one from a friend of mine in order to use the utility called "bootrec".  The general procedure was something like:
  1. Boot Windows 8 recovery from USB drive. 
  2. Get to a command prompt and run the following:
  3. bootrec /fixmbr
  4. bootrec /fixboot
  5. bootrec /rebuildbcd
I am not sure which of the last three commands was most effective in fixing my problem, but I ran all of them.

So that's it.  For any problem you may have, I think you've got the information here to solve it.