Page 1 of 1

HG180 no firmware found

Posted: Tuesday 04 September 2018 15:43
by rob0t1704
I have found several postings for this issue but nobody seems to have the solution.

I followed the Evohome installation instruction (wiki) thoroughly. But got stuck on the firmware.
Then check your kernel messages with dmesg

Depending on your distribution you may need to supply a firmware file or enable the appropriate software sources / repository
kernel messages:

[ 1813.928806] usb 1-1.1.2: Direct firmware load for ti_3410.fw failed with error -2
[ 1813.928819] usb 1-1.1.2: ti_download_firmware - firmware not found
[ 1813.928868] ti_usb_3410_5052: probe of 1-1.1.2:1.0 failed with error -2
I updated everything and tried everything I could find on the internet. Can someone who has a HG180 working please respond?

hardware raspbery PI 3

Re: HG180 no firmware found

Posted: Tuesday 04 September 2018 23:59
by stuiow
Did you find a copy of the firmware off the web and install it into the relevant folder? /etc/modules

Re: HG180 no firmware found

Posted: Wednesday 05 September 2018 20:06
by rob0t1704
I found a file ti_3410.fw but I don't know what to do with it. I looked for a folder "modules" in etc (etc/modules) but there was no folder only a modules file.
I suppose my lack of Unix knowledge is now showing.

I think I've found the proper file but don't know how to install it. All other firmware is installed automatically by the system so I never ran into this.

Re: HG180 no firmware found

Posted: Wednesday 05 September 2018 20:29
by stuiow
The wiki how to has been updated since I referred to it.
Pop that file you got into folder /lib/firmware.

Then you need to edit a file to let the system know to look for it.
I'm at work right now, I'll try to help more later

Sent from my SM-G955F using Tapatalk


Re: HG180 no firmware found

Posted: Thursday 06 September 2018 13:16
by stuiow
rob0t1704 wrote: Wednesday 05 September 2018 20:06 I found a file ti_3410.fw but I don't know what to do with it. I looked for a folder "modules" in etc (etc/modules) but there was no folder only a modules file.
I suppose my lack of Unix knowledge is now showing.

I think I've found the proper file but don't know how to install it. All other firmware is installed automatically by the system so I never ran into this.
After you have put the .fw file in/lib/firmware, follow this:-
#
As an alternative to modifying /etc/rc.local etc. above. It's best to use udevadm to obtain the correct parameters when creating a udev rule as examples can often be misleading.

Put the following in a file such as 46-hgi80_usb.rules and cp to /etc/udev/rules.d/

Rules for hotplugging Honeywell HGI80 USB device
SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="10ac", ATTR{idProduct}=="0102", NAME="ttyUSB0", RUN+="/sbin/modprobe ti_usb_3410_5052"
SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="10ac", ATTR{idProduct}=="0102", NAME="ttyUSB0", RUN+="/bin/sh -c 'echo 10ac 0102 > /sys/bus/usb-serial/drivers/ti_usb_3410_5052_1/new_id'"
KERNEL=="ttyUSB[0-9]*", ATTRS{idVendor}=="10ac", ATTRS{idProduct}=="0102", NAME="ttyUSB0", SYMLINK="ttyUSB.Evo0", GROUP="dialout", MODE="0660"

Re: HG180 no firmware found

Posted: Thursday 06 September 2018 15:56
by rob0t1704
It Works!!

Thank you very much. I think more people will benefit from this post.

Code: Select all

[   16.081456] usb 1-1.1.2: reset full-speed USB device number 5 using dwc_otg
[   16.217111] usb 1-1.1.2: device firmware changed
[   16.217388] usb 1-1.1.2: USB disconnect, device number 5
[   16.311444] usb 1-1.1.2: new full-speed USB device number 6 using dwc_otg
[   16.505355] usb 1-1.1.2: New USB device found, idVendor=10ac, idProduct=0102
[   16.505369] usb 1-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   16.505377] usb 1-1.1.2: Product: TUSB3410 Boot Device
[   16.505386] usb 1-1.1.2: Manufacturer: Texas Instruments
[   16.505394] usb 1-1.1.2: SerialNumber: TUSB3410
[   16.507598] ti_usb_3410_5052 1-1.1.2:1.0: TI USB 3410 1 port adapter converter detected
[   16.509951] ti_usb_3410_5052 1-1.1.2:2.0: TI USB 3410 1 port adapter converter detected
[   16.510316] usb 1-1.1.2: TI USB 3410 1 port adapter converter now attached to ttyUSB0


Re: HG180 no firmware found

Posted: Thursday 06 September 2018 16:00
by rob0t1704
This is the link for the firmware file:

https://raw.githubusercontent.com/adafr ... ti_3410.fw

Re: HG180 no firmware found

Posted: Wednesday 05 June 2019 19:10
by Ries
Thanks, this helped me