Samsung Wireless Lan Adapter Software

Posted on by
Samsung Wireless Lan Adapter Software Average ratng: 9,6/10 9397 reviews
  1. Samsung Wireless Lan Adapter Walmart
  2. Samsung Wireless Lan Adapter Software

Using Non-Samsung Wi-Fi USB Adapter with Samsung Smart/Internet TV

Posted by Setu in Home Entertainment, How Tos on Mar 14th, 2012 Comments

Wireless adapters free computers from needing Ethernet cables, delivering advanced Wi-Fi capabilities and upgrading your Wi-Fi-enabled computers to the faste. Wireless WLAN LAN Adapter, JeyHos 300Mbps USB WiFi Adapter with Dual Band 2.4GHz-5GHz WiFi Speed for Samsung Smart TV WIS12ABGNX WIS09ABGN, Compatible with Windows XP / 7/8 / 10 System, USB 2.0 3.2 out of 5 stars 133.

This is a guest post by Rajnish Jain. Rajnish is a product development enthusiast having around 12.5 years of experience. He enjoys solving complex technical problems and has worked on wide range of technologies including Open Source frameworks, Unix (shell scripting) & embedded device programming.

When you purchase a Samsung Smart TV (UA40D5500RR, for example), depending on the model, it may or may not support inbuilt Wi-Fi function. If it doesn’t, then Samsung recommends using WIS09ABGN USB WiFi adapter to let your TV connect to a Wireless router. Samsung has priced this USB adapter at a very huge cost (around INR 6,000) and any other adapter is not recognized by the TV. WTF?

Samsung Wireless Lan Adapter Walmart

Samsung Wireless Lan Adapter Software

I tried not to fall prey to this monopolistic approach by the company and put myself on work to find out a hack so that any Wi-Fi USB adapter is accepted by the TV. I found this wonderful link which helped a lot.

DISCLAIMER: The author of this article & woikr are not responsible for any damage/malfunction caused to the TV by following the instructions written below. Please continue at your own risk.

Few facts first:

  1. WIS09ABGN uses a chipset which is RT2870. This manufacturer of this chipset is Ralink Technologies.
  2. The Samsung Smart TVs internally run Linux OS (which version, which variant is immaterial for this post here).
  3. Every USB device has these two properties (apart from many others):
    • VID – vendor identification
    • PID – product identification
    • Samsung TVs have built-in intelligence that if the Wi-Fi adapter that’s plugged in doesn’t have Samsung specific VID/PID values, the TV will reject it.
  4. Samsung specific VID/PID values that the TV is expecting are:
    • VID: 04E8
    • PID: 2018
  5. I found this info (and the chipset info) here.
  6. The same page (http://wikidevi.com/wiki/Samsung_WIS09ABGN) tells us that the WIS09ABGN is running rt2870sta driver based on Linux.
  7. To be able to use any Wi-Fi USB adapter with Samsung TV, all you need to do is change that USB device’s VID/PID values to 04E8 : 2018 (Values assigned to Samsung Electronics Co.)

Samsung Wireless Lan Adapter Software

So, to begin with, we need a USB adapter which is based on Ralink’s RT2870 chipset. A quick search on Google and Ifound this one: Edimax EW-7718Un. I could find this one on ebay.in for INR 999/- and quickly ordered it.

Upon receiving the Edimax dongle, I started towards modifying the required values. These values reside on EEPROM (e2p) of the chipset, so changing them means you need to issue commands that modify the values on e2p. However, e2p ioctl is generally not available by default, so you will need to modify the driver code, compile it, and then change the values. This is explained below.

We now already know that we need to deal with Linux OS. So, we need a Linux box wherein our USB adapter can be plugged in and its properties can be seen and modified.

For this, instead of looking for a Linux based box, or creating a new partition in my laptop’s hard drive, I chose to go in for USB flash drive based environment. That is, without changing any configuration of my Windows XP based laptop, I can get a new OS to play around with.

  1. Start your Windows based computer.
  2. Plugin a USB flash drive into it.
  3. Follow the instructions at http://www.ubuntu.com/download/ubuntu/download and make your USB drive bootable with ubuntu, preferably version 10.04.
  4. Once the flash drive is ready, restart your computer, change the boot sequence in BIOS so that it boots from the USB drive and you will get into a new world of ubuntu.
  5. Once the system comes up, plug in your USB adapter, open the command terminal and type:
    1. # lsusb
    2. You should be able to figure out this string for your Edimax EW-7718Un adapter:
    3. These are the VID/PID values assigned to this USB device. And this is the task in hand – to replace these values with 04E8:2018.
  6. Plug out the adapter.
  7. Now is the time to first download the relevant driver. Open Mozilla Firefox browser (which comes installed by default with ubuntu), and download the driver from this location:
    1. You can enter any name and e-mail address in the boxes that appear on this link. Why are we downloading the driver? Because, to change the VID/PID values on EEPROM of the USB adapter, we will need to issue the following commands:
      • # iwpriv ra0 e2p 208=04E8
      • # iwpriv ra0 e2p 20A=2018
    2. But by default the e2p ioctl is missing for us. So, we will customize the driver code to introduce e2p ioctl and then the above command will do us the trick.
      NOTE: If the above sequence of commands (with USB adapter plugged-in) works for you then you are done. You don’t need to follow the rest of the tutorial.
  8. Un-package the driver in a folder, say DRIVER_ROOT. Make the following changes to driver code:
    1. # cd <DRIVER_ROOT>/os/linux and open config.mk file.
      # Support ATE function
      # Support Wpa_Supplicant
      # Support Native WpaSupplicant for Network Maganger
    2. While in the same folder, open usb_main_dev.c file and add this code:
      MODULE_LICENSE(“GPL”).
      It should now look like this:

      MODULE_AUTHOR(“Paul Lin <paul_lin@ralinktech.com>”);
      MODULE_DESCRIPTION(“RT2870 Wireless Lan Linux Driver”);
      MODULE_LICENSE(“GPL”);
      #ifdef CONFIG_STA_SUPPORT
      #ifdef MODULE_VERSION
      MODULE_VERSION(STA_DRIVER_VERSION);
      #endif
      #endif // CONFIG_STA_SUPPORT //

  9. Now we are ready to compile the driver code. You need the relevant compiler and helper tools and libraries for doing so. On the command terminal, issue these commands:
    • # sudo apt-get update
    • # sudo apt-get upgrade
    • # sudo apt-get install build-essential
    • # sudo apt-get install linux-headers-$(uname -r)
  10. While in DRIVER_ROOT, issue the following commands:
    • # sudo make
    • # sudo make install
    • # sudo rmmod rt2870sta
    • # sudo rmmod rt2800usb
    • # sudo rmmod rt2x00usb
    • # sudo rmmod rt2800lib
    • It may happen that the last 4 commands don’t do anything, or print a warning like “driver not found”. I don’t remember the exact warning message, but this means that we are trying to remove a module (rmmod) that doesn’t exist. Double check that no ralink specific module is now in the memory:
    • # lsmod grep rt
    • You shouldn’t see any of the modules mentioned in the last 4 commands above.
  11. Now, load your custom driver module in the kernel:
    • # sudo su
    • # insmod <DRIVER_ROOT>/os/linux/rt3070sta.ko
    • At this stage, if you insert your USB adapter and watch, the e2p specific ioctl will be listed.
  12. Now, plugin your USB adapter (Edimax EW-7718Un, for example) and issue the following commands from the command terminal:
    • # sudo su
    • # iwpriv ra0 e2p 208=04E8
    • # iwpriv ra0 e2p 20A=2018
    • You may need to plug out and plug back in your adapter for the above commands to be successful.
  13. We are now done. You can verify the modified values by using the lsusb command. Plugin your Wi-Fi adapter into your Samsung Smart TV and it will fool the TV to think that a Samsung specific stick has been plugged in. Enjoy!

Please note that the driver code doesn’t compile on version of ubuntu later than 10.04. If you have a reason to use a later version of ubuntu, you will need to make changes to some more .c files of the driver code because some of the libraries used have been renamed in the newer versions of ubuntu.

Liked this article? Like us on Facebook!

Adapter

Comments

  1. […] […]

  2. […] Using Non-Samsung Wi-Fi USB Adapter with Samsung Smart/Internet TV […]

  3. […] then u have install the drivers which ll be a headache and u should follow something like this Using Non-Samsung Wi-Fi USB Adapter with Samsung Smart/Internet TV woikr If u want a better option to spend as cheap as possible move ur modem and connect it with LAN […]