본문 바로가기
카테고리 없음

Prolific Usb To Serial Driver Mac Os X El Capitan

by glacycoladdaelio 2021. 1. 16.


Windows:

Aug 13, 2016  The primary issue is that FLdigi or WSJT-X stop communicating with the PL-2303 USB driver when they conflict. (Start both Programs). When this happens I have to Force Quite the application. It however, fails to release the PL-2303 driver in the OS and it remains visible under System Information / USB. (It's providing Cat Control to a TS-2000).

No driver installation is necessary for Windows 10, 8.1, 8, or 7 computers that are connected to the internet. The operating system will download the correct drivers automatically when the Plugable USB to RS-232 DB9 Serial Adapter is plugged in. For all Windows XP and Vista systems and for Windows 10, 8.1, 8, and 7 systems that are not connected to the internet, please download and install the following driver:

This driver file contains the following software versions:

Prolific Usb To Serial Driver For Mac

  • Installer version & Build date: 1.20.0 (07-30-2018)
  • Windows XP (32 & 64-bit) WDM WHQL Driver: v3.8.24.0 (07-05-2018)
  • Windows Vista/7/8/8.1/10 (32 & 64-bit) WDF WHQL Driver: v3.8.25.0 (07-12-2018)
Mac

Mac:

Mac os catalyst. MacOS 10.15 Catalina, MacOS 10.14 Mojave, MacOS 10.13 High Sierra, MacOS 10.12 Sierra, OS X 10.11 El Capitan, 10.10 Yosemite, and 10.9 Mavericks (all 64-bit)

  • Installer version & Build date: 2.0.0 (2019-12-04)
  • MacOS 10.13 High Sierra has introduced additional security to Gatekeeper requiring extra steps to enable the driver, we have documented the procedure at our blog post here: How to Fix Extensions Blocked by Gatekeeper in MacOS 10.13 High Sierra

Mac OS X 10.8 Mountain Lion (64-bit), 10.7 Lion (32-bit and 64-bit kernels), 10.6 Snow Leopard (32-bit and 64-bit kernels)

  • Installer version & Build date: 1.5.1 (2013-09-02)

Linux:

Open source drivers are included in Linux kernels 2.6.11 and later. These have support for the Prolific 2303 chipset, and recognize the plug and play IDs of the Plugable adapter.

Other Platforms:

The adapter uses the standard USB Prolific VID and PID of 0×2303, which is recognized by all of Prolific’s standard drivers.

Please visit the Prolific PL2303 driver download page for all other operating system options. Login as guest with the password guest and choose USB Serial/Parallel under USB Smart I/O Controllers.

More Links:

There are a couple different USB to serial adapters that you might use as a network engineer. The one pictured in the article is manufactured by Prolific, but sold by multiple different vendors. There’s also another manufactured by FTDI, which I’ve heard good things about, and of course the one built into recent Cisco hardware. The driver for the chip used by Cisco is conveniently included in OS X, but the FTDI and Prolific chips require their own drivers. Myself, I have used the Prolific cables for years and have been generally happy with them.

The best drivers for the Prolific come directly from the manufacturer, not the vendors that resell them. This is because the vendor provided drivers always seem to be out of date. However, the drivers from Prolific don’t work with all cables out of the box. I’m going to show you how to fix that.

1. Get the Driver

If you haven’t already, hop over to the Prolific site to download the driver and install it. Here’s the URL at the time of this writing:

If you are running OS X Yosemite, you may need to read this article to get the driver working: OS X Yosemite and Prolific USB Drivers.

2. Discover Magic Numbers

OK, the numbers aren’t really magic, but the driver will need them so that it can be associated with your USB device. Head to Apple -> About This Mac and and choose System Report. Select USB and scroll until you find your Prolific USB device. It should look something like this:

Watch for the Manufacturer (circled in blue). Then note the Product ID and Vendor ID (circled in red). Update flash mac os. We will be adding these to the driver.

3. Hex to Decimal Conversion

Calculator in hex mode

ExFAT also performs better than FAT32.You can format the drive from either the Mac or the Windows machine. However, if you want to use part of the drive for OS X's Time Machine backups, you should do this from the Mac, since there's an extra step to make the drive compatible for Time Machine. Mac os x format hard drive ntfs.

We need to convert the hex numbers to decimal. An easy way to do that is to run Calculator and hit Command-3. Click the “16” above the clear button to switch to hex and enter the number you want to convert (like 0x2008 from the example). Now click the 10 and you have the hex to decimal conversion. If you used 0x2008, you should get 8200. You need to convert both the product and vendor IDs.

Serial

4. Edit the Driver

Fire up your favorite terminal emulator and head here:

Best multimedia presentation software for mac. Fortunately, there's some great options for presentation software available. If you're looking for the right Mac presentation software to create your next business slideshow, we can help with a list of some of the best Mac slideshow software available. Th is article provides an overview of 15 popular Mac presentation software options. An industry leader in presentation software, GoToMeeting is trusted by millions of people everyday for professional real-time virtual communication. GoToMeeting provides a fast, easy and reliable professional online meeting solution that enables customers to meet face to face, share presentations and chat with colleagues, all with the click of. The software can import files from Keynote, the default presentation software on Mac computers. Plus, there are hundreds of free templates that you can download for free. Best Multimedia Presentation Software for Mac – FlowVella. Rating: 4.6/5 Price: Free Download. This software program is compatible with Mac computers and devices, like iPads for creating Multimedia presentations which are very much interactive. It’s a perfect high-end alternative to Powerpoint.

At this point, you will need to either fire off a root shell or sudo everything.[1]

Safety First! Backup your Info.plist so you can fix the driver if you break it.

Prolific usb to serial driver mac high sierra

Edit Info.plist with your editor of choice. Scroll down and you will find a section that looks like this:
[code language=”xml”]
<key>0557_2008</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.prolific.driver.PL2303</string>
<key>IOClass</key>
<string>com_prolific_driver_PL2303</string>
<key>IOProviderClass</key>
<string>IOUSBInterface</string>
<key>bConfigurationValue</key>
<integer>1</integer>
<key>bInterfaceNumber</key>
<integer>0</integer>
<key>idProduct</key>
<integer>8200</integer>
<key>idVendor</key>
<integer>1367</integer>
</dict>
[/code]

What you want to do is copy and paste that section. I don’t think the <key> actually matters, but you can change it to match the hex version of the vendor and product ID. So if your vendor ID was 0x2478 for Tripplite with a product ID of 0x2008, you can change the key for your new section to:
[code language=”xml”]
<key>2478_2008</key>
[/code]
Then you will want to put the decimal version of that you converted before into the idProduct and idVendor sections. So for the Tripplite example you only need to change the idVendor and it would look like this:
[code language=”xml”]
<key>idVendor</key>
<integer>9336</integer>
[/code]

Prolific Usb To Serial Driver Mac Mojave

So the final product for my Tripplite version of the Prolific adapter works when I have this section added:
[code language=”xml”]
<key>2478_2008</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.prolific.driver.PL2303</string>
<key>IOClass</key>
<string>com_prolific_driver_PL2303</string>
<key>IOProviderClass</key>
<string>IOUSBInterface</string>
<key>bConfigurationValue</key>
<integer>1</integer>
<key>bInterfaceNumber</key>
<integer>0</integer>
<key>idProduct</key>
<integer>8200</integer>
<key>idVendor</key>
<integer>9336</integer>
</dict>
[/code]

5. Kick the Driver

Prolific Usb To Serial Driver Mac Os X El Capitan 10 11 6

Now you need to unload and reload the driver to load the new settings:

Prolific Usb To Serial Driver Mac Os X El Capitan

You should now have a working USB device! This is a bit of a hassle. I recently found another way to solve this problem, but it’s not free and it’s another blog post.

With PIXMA Cloud Web link, you could publish from prominent on the internet solutions like Facebook, Twitter, Flickr, Evernote, Dropbox. The PIXMA E477 Automobile Power ON spots a print command as well as will immediately switch over the printer on with a USB link as well as immediately turns off after a particular timing. Canon selphy cp730 driver mac os x. Review InformationPublish, check and also do printer procedures effortlessly, without the should be connected to a COMPUTER through USB.

Prolific Usb To Serial Driver Mac High Sierra

FIN