CardSharing-X

» Receivers « => Other HDTV Receivers => » HDTV « => Ferguson HD => Topic started by: antox on January 28, 2010, 07:46:29 AM

Title: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on January 28, 2010, 07:46:29 AM
 Neue Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
- ZgodnoϾ z kartami Sky Italia
- BIS, SCT, JSC Sport (13.0 ° E)

Wybór kana³u audio jest przeprowadzane za pomoc¹ klawisza Option.
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on February 18, 2010, 06:05:06 PM
Neue Emusoft Ferguson HF8900HD-Hivion_11.24.5D_17.02.2010
http://www.2shared.com/file/11459308/19c33dd8/HF8900HD-Hivion_11245D_1702201.html (http://www.2shared.com/file/11459308/19c33dd8/HF8900HD-Hivion_11245D_1702201.html)
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on February 26, 2010, 07:02:22 PM
     HF8900-H-11.24.6D_satportal_25.02.2010.
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on March 19, 2010, 06:09:30 PM
 Neue Emusoft Ferguson HF8900HD_11.25.0D_Hivion
(http://www.sat-ulc.eu/ulc/local_resize.php?linkid=176349&catid=536&size=100)
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on March 31, 2010, 07:46:12 PM
Neue Emusoft Ferguson HF8900HD_Hivion_11.25.2D (http://www.sat-ulc.eu/ulc/local_resize.php?linkid=176655&catid=536&size=100)
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on April 23, 2010, 11:57:14 AM
Neue Emusoft Ferguson HF8900-11.25.4F
(http://www.sat-ulc.eu/ulc/local_resize.php?linkid=177378&catid=536&size=100)
Quote
SSSP – Simple Serial Sharing Protocol
=====================================

This Protocol defines the communication between a DVB Box and a gbox by using a RS232(serial/com/tty port) with only 4 commands to implement.


RS232 communication settings
============================
115200 8N1 (115200 Baud, 8 data bits, no parity, 1 stop bit)
To activate add in the gbox_cfg R: { 01 } for com1, or R: { 02 } for com2
W: and V: should be deactivated 00 00
When developing Software you can activate thers232 debug messages by adding
10 to the R: parameter, a example for com1 would be R: { 11 }


Format of data
==============
AB CD EF GH ....

AB = Command
CDEF = length of the data following
GH ... = data

Total length is CDEF + 3 (1 byte command + 2 bytes len)


Command 0x means from STB to gbox
Command Fx means from gbox to STB


SEND PMT = 01 (send PMT to gbox)
--------------------------------
01 xx xx yy yy zz zz zz zz data ....
xx = Len
yy = SID ( byte 2 and bytes 3 from the PMT)
zz = PMT CRC32 (last 4 bytes in the PMT)
Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
Provider is only used in Seca and **acess, in other systems put 00 00 00
For Seca use 00 xx yy and for **acess xx yy z0

On each channel change the DVB box must send the PMT first, on FTA Channels please send: 01 00 06 yy yy zz zz zz zz


SEND ECM = 03 (send ECM to gbox)
--------------------------------
03 xx xx yy yy ecm_data ....
xx = len
yy = pid

Note: Please send every ecm only once, do not send the same ecm multiple times.


REQUESTING PIDS DATA = F1 (receive ECM pid list )
-------------------------------------------------
F1 xx xx pid1 pid2 pid3 ....
xx = Len
pidx = 2 bytes for each pid

Please send me ECM data from these pids only, close all other already open.


CW RETURN = F2 (receive ControlWords)
-------------------------------------
F2 00 10 cw1 (8 bytes) cw2 (8 bytes)


Command flow on a channel change
================================
1. DVB box sends PMT with command 01 on a channel change
2. gbox sends pid list of the ecm's it can handle with command F1
3. DVB box sends ECM's (from all pids in the pid list) with command 03
4. gbox sends CW's with command F2
5. As soon the gbox has success in decoding a ecm it sends again a F1 command
with one pid only, the DVB box should close then all other pids and from
now on send only ecm data from that pid.

After this command 03 and F2 will be repeated until a channel change.

On the next channel change the DVB should close all open pids and repeat the
above procedure.



//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
Advanced protocol

cmd 01 and 03 are not enough for multi-channel.

so added



Advanced SSSP support = 04 (send cmd to gbox)
--------------------------------
04 xx xx yy yy
xx = Len
yy = check value ( returned )



Reply Advanced SSSP support = F4
-------------------------------------------------
F4 xx xx yy yy
xx = Len
yy = 2 bytes, returned from CMD 04







SEND PMT = 05 (send PMT to gbox)
--------------------------------
05 xx xx aa yy yy zz zz zz zz data ....
xx = Len
aa = which channel, less than 10,  example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
yy = SID ( byte 5 and bytes 6 from the PMT)
zz = PMT CRC32 (last 4 bytes in the PMT)
Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
Provider is only used in Seca and **acess, in other systems put 00 00 00
For Seca use 00 xx yy and for **acess xx yy z0

On each channel change the DVB box must send the PMT first, on FTA Channels please send: 05 00 07 aa yy yy zz zz zz zz


REQUESTING PIDS DATA = F5 (receive ECM pid list )
-------------------------------------------------
F1 xx xx aa pid1 pid2 pid3 ....
xx = Len
aa = from cmd 05
pidx = 2 bytes for each pid

Please send me ECM data from these pids only, close all other already open.





SEND ECM = 06 (send ECM to gbox)
--------------------------------
03 xx xx aa bb bb bb bb yy yy ecm_data ....
xx = len
aa = which channel, less than 10,  example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
bb = 4bytes, tag, returned from cmd F6
yy = pid

Note: Please send every ecm only once, do not send the same ecm multiple times.


CW RETURN = F6 (receive ControlWords)
-------------------------------------
F2 00 15 aa bb bb bb bb cw1 (8 bytes) cw2 (8 bytes)
aa = which channel from cmd 06
bb = tag 4bytes from cmd 06
HF8900-11.25.4F (http://www.multiupload.com/D1O3IXWSGX)
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on April 23, 2010, 09:01:44 PM
Neue Emusoft Ferguson HF8900HD-Hivion-11.25.4D
(http://www.sat-ulc.eu/ulc/local_resize.php?linkid=177397&catid=536&size=100)

HF8900HD-Hivion-11.25.4D. (http://www.multiupload.com/96WUR43KX8)
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on May 03, 2010, 09:36:20 AM
HF8900HD-11.08.7F.sgn
(http://www.sat-ulc.eu/ulc/local_resize.php?linkid=177397&catid=536&size=100)
HF8900HD-11.08.7F.sgn (http://hotfile.com/dl/40991559/d478330/HF8900HD-11.08.7F.sgn.zip.html)
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on May 25, 2010, 08:37:28 PM
Neue Emusoft Ferguson HF8900HD_Hivion_11.25.4D


       SSSP – Simple Serial Sharing Protocol
=====================================

Code: You are not allowed to view links. Register or Login
This Protocol defines the communication between a DVB Box and a gbox by using a RS232(serial/com/tty port) with only 4 commands to implement.


RS232 communication settings
============================
115200 8N1 (115200 Baud, 8 data bits, no parity, 1 stop bit)
To activate add in the gbox_cfg R: { 01 } for com1, or R: { 02 } for com2
W: and V: should be deactivated 00 00
When developing Software you can activate thers232 debug messages by adding
10 to the R: parameter, a example for com1 would be R: { 11 }


Format of data
==============
AB CD EF GH ....

AB = Command
CDEF = length of the data following
GH ... = data

Total length is CDEF + 3 (1 byte command + 2 bytes len)


Command 0x means from STB to gbox
Command Fx means from gbox to STB


SEND PMT = 01 (send PMT to gbox)
--------------------------------
01 xx xx yy yy zz zz zz zz data ....
xx = Len
yy = SID ( byte 2 and bytes 3 from the PMT)
zz = PMT CRC32 (last 4 bytes in the PMT)
Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
Provider is only used in Seca and Viaccess, in other systems put 00 00 00
For Seca use 00 xx yy and for **acess xx yy z0

On each channel change the DVB box must send the PMT first, on FTA Channels please send: 01 00 06 yy yy zz zz zz zz


SEND ECM = 03 (send ECM to gbox)
--------------------------------
03 xx xx yy yy ecm_data ....
xx = len
yy = pid

Note: Please send every ecm only once, do not send the same ecm multiple times.


REQUESTING PIDS DATA = F1 (receive ECM pid list )
-------------------------------------------------
F1 xx xx pid1 pid2 pid3 ....
xx = Len
pidx = 2 bytes for each pid

Please send me ECM data from these pids only, close all other already open.


CW RETURN = F2 (receive ControlWords)
-------------------------------------
F2 00 10 cw1 (8 bytes) cw2 (8 bytes)


Command flow on a channel change
================================
1. DVB box sends PMT with command 01 on a channel change
2. gbox sends pid list of the ecm's it can handle with command F1
3. DVB box sends ECM's (from all pids in the pid list) with command 03
4. gbox sends CW's with command F2
5. As soon the gbox has success in decoding a ecm it sends again a F1 command
with one pid only, the DVB box should close then all other pids and from
now on send only ecm data from that pid.

After this command 03 and F2 will be repeated until a channel change.

On the next channel change the DVB should close all open pids and repeat the
above procedure.



//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
Advanced protocol

cmd 01 and 03 are not enough for multi-channel.

so added



Advanced SSSP support = 04 (send cmd to gbox)
--------------------------------
04 xx xx yy yy
xx = Len
yy = check value ( returned )



Reply Advanced SSSP support = F4
-------------------------------------------------
F4 xx xx yy yy
xx = Len
yy = 2 bytes, returned from CMD 04







SEND PMT = 05 (send PMT to gbox)
--------------------------------
05 xx xx aa yy yy zz zz zz zz data ....
xx = Len
aa = which channel, less than 10, example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
yy = SID ( byte 5 and bytes 6 from the PMT)
zz = PMT CRC32 (last 4 bytes in the PMT)
Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
Provider is only used in Seca and Viaccess, in other systems put 00 00 00
For Seca use 00 xx yy and for **acess xx yy z0

On each channel change the DVB box must send the PMT first, on FTA Channels please send: 05 00 07 aa yy yy zz zz zz zz


REQUESTING PIDS DATA = F5 (receive ECM pid list )
-------------------------------------------------
F1 xx xx aa pid1 pid2 pid3 ....
xx = Len
aa = from cmd 05
pidx = 2 bytes for each pid

Please send me ECM data from these pids only, close all other already open.





SEND ECM = 06 (send ECM to gbox)
--------------------------------
03 xx xx aa bb bb bb bb yy yy ecm_data ....
xx = len
aa = which channel, less than 10, example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
bb = 4bytes, tag, returned from cmd F6
yy = pid

Note: Please send every ecm only once, do not send the same ecm multiple times.


CW RETURN = F6 (receive ControlWords)
-------------------------------------
F2 00 15 aa bb bb bb bb cw1 (8 bytes) cw2 (8 bytes)
aa = which channel from cmd 06
bb = tag 4bytes from cmd 06
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on May 26, 2010, 06:34:34 PM
Neue Emusoft Ferguson HF8900HD_Hivion_11.25.6D_25.05.2010


       SSSP – Simple Serial Sharing Protocol
=====================================

This Protocol defines the communication between a DVB Box and a gbox by using a RS232(serial/com/tty port) with only 4 commands to implement.


RS232 communication settings
============================
115200 8N1 (115200 Baud, 8 data bits, no parity, 1 stop bit)
To activate add in the gbox_cfg R: { 01 } for com1, or R: { 02 } for com2
W: and V: should be deactivated 00 00
When developing Software you can activate thers232 debug messages by adding
10 to the R: parameter, a example for com1 would be R: { 11 }


Format of data
==============
AB CD EF GH ....

AB = Command
CDEF = length of the data following
GH ... = data

Total length is CDEF + 3 (1 byte command + 2 bytes len)


Command 0x means from STB to gbox
Command Fx means from gbox to STB


SEND PMT = 01 (send PMT to gbox)
--------------------------------
01 xx xx yy yy zz zz zz zz data ....
xx = Len
yy = SID ( byte 2 and bytes 3 from the PMT)
zz = PMT CRC32 (last 4 bytes in the PMT)
Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
Provider is only used in Seca and Viaccess, in other systems put 00 00 00
For Seca use 00 xx yy and for viaccess xx yy z0

On each channel change the DVB box must send the PMT first, on FTA Channels please send: 01 00 06 yy yy zz zz zz zz


SEND ECM = 03 (send ECM to gbox)
--------------------------------
03 xx xx yy yy ecm_data ....
xx = len
yy = pid

Note: Please send every ecm only once, do not send the same ecm multiple times.


REQUESTING PIDS DATA = F1 (receive ECM pid list )
-------------------------------------------------
F1 xx xx pid1 pid2 pid3 ....
xx = Len
pidx = 2 bytes for each pid

Please send me ECM data from these pids only, close all other already open.


CW RETURN = F2 (receive ControlWords)
-------------------------------------
F2 00 10 cw1 (8 bytes) cw2 (8 bytes)


Command flow on a channel change
================================
1. DVB box sends PMT with command 01 on a channel change
2. gbox sends pid list of the ecm's it can handle with command F1
3. DVB box sends ECM's (from all pids in the pid list) with command 03
4. gbox sends CW's with command F2
5. As soon the gbox has success in decoding a ecm it sends again a F1 command
with one pid only, the DVB box should close then all other pids and from
now on send only ecm data from that pid.

After this command 03 and F2 will be repeated until a channel change.

On the next channel change the DVB should close all open pids and repeat the
above procedure.



//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
Advanced protocol

cmd 01 and 03 are not enough for multi-channel.

so added



Advanced SSSP support = 04 (send cmd to gbox)
--------------------------------
04 xx xx yy yy
xx = Len
yy = check value ( returned )



Reply Advanced SSSP support = F4
-------------------------------------------------
F4 xx xx yy yy
xx = Len
yy = 2 bytes, returned from CMD 04







SEND PMT = 05 (send PMT to gbox)
--------------------------------
05 xx xx aa yy yy zz zz zz zz data ....
xx = Len
aa = which channel, less than 10, example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
yy = SID ( byte 5 and bytes 6 from the PMT)
zz = PMT CRC32 (last 4 bytes in the PMT)
Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
Provider is only used in Seca and Viaccess, in other systems put 00 00 00
For Seca use 00 xx yy and for viaccess xx yy z0

On each channel change the DVB box must send the PMT first, on FTA Channels please send: 05 00 07 aa yy yy zz zz zz zz


REQUESTING PIDS DATA = F5 (receive ECM pid list )
-------------------------------------------------
F1 xx xx aa pid1 pid2 pid3 ....
xx = Len
aa = from cmd 05
pidx = 2 bytes for each pid

Please send me ECM data from these pids only, close all other already open.





SEND ECM = 06 (send ECM to gbox)
--------------------------------
03 xx xx aa bb bb bb bb yy yy ecm_data ....
xx = len
aa = which channel, less than 10, example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
bb = 4bytes, tag, returned from cmd F6
yy = pid

Note: Please send every ecm only once, do not send the same ecm multiple times.


CW RETURN = F6 (receive ControlWords)
-------------------------------------
F2 00 15 aa bb bb bb bb cw1 (8 bytes) cw2 (8 bytes)
aa = which channel from cmd 06
bb = tag 4bytes from cmd 06
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on May 27, 2010, 05:13:45 PM
Neue Emusoft Ferguson HF8900HD_Hivion_11.25.7D_27.05.2010

Title: Emusoft Ferguson HF8900HD_11.26.1D_Hivion
Post by: aamir11 on July 10, 2010, 06:48:58 PM
Emusoft Ferguson HF8900HD_11.26.1D_Hivion

Code: You are not allowed to view links. Register or Login
http://www.multiupload.com/8XZVJ0ZYX6
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on July 12, 2010, 04:41:34 PM
Neue Emusoft Ferguson HF8900HD_11.26.2D_Hivion

http://www.2shared.com/file/_6ojHeui/HF8900HD_11262D_Hivion.html
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on July 26, 2010, 05:00:55 PM
HF8900HD_Hivion_11.27.0D_26.07.2010.
soft hf 8900 hd canalsat...

HF8900HD_Hivion_11.27.0D_26.07.2010.zip (http://dvb-upload.com/pliki/2010-07-26/HF8900HD_Hivion_11.27.0D_26.07.2010.zip)
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on August 08, 2010, 01:14:45 PM
Quote
org. Firmware FT 8300 HD

* dodano obsługę w języku Portugalskim
* poprawiono obsługę modułÃ³w Gol TV
* usprawniono obsługę TimeShift

* Unterstützung in portugiesischer Sprache
* Verbesserte Unterstützung für Module Gol TV
* Verbesserte Unterstützung für TimeShift

mfg a.nili
Quote
Neue org.Firmware Ferguson HF8900HD_1.20.4A.538

Po za³adowaniu nowego oprogramowania,
nale¿y wy³¹czyæ
automatyczne w³¹czanie napisów w menu 'Jêzyk'.

Na kanale CYFRA+FILM HD rozpoczêto nadwanie napisów DVB,
których dzia³anie zak³óca pracê tunera.
Wkrótce problem zostanei rozwi¹zany,
jednak na razie prosimy nie korzystaæ napisów DVB
podczas ogl¹dania CANAL+FILM HD.
Ca³y czas s¹ dostêpne napisy w formacie txt,
w³¹czane po wybraniu opcji telegazety i wpisaniu strony 778.

Online übersetzt:
Nach der neuen Software adowaniu ³,
¿Y sollte Ausschalter
automatische Spülgänge Sie die Untertitel in das Menü, die "Sprache".

Der Kanal CYFRA + FILM HD DVB Untertitel nadwanie begonnen,
bei denen der Betrieb zak ³ Oca-Tuner funktioniert.
Bald zostanei Problem gelöst,
Aber für jetzt, nicht die Verwendung der DVB-Untertitel
¹ Gerichte, während gerade Canal + HD FILM.
Ca y ³ ¹ s zur Verfügung stehenden Zeit Untertitel in txt-Format,
Waschzyklen Sulfat nach Auswahl Teletext und Eingabe der 778.

mfg a.nili
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on October 06, 2010, 05:48:41 PM
HF 8900 soft i lista TNK.
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on October 25, 2010, 07:49:01 PM
 Neue org.Firmware Ferguson HF8900HD_1.21.4A
Quote
       ungetestet
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on October 25, 2010, 07:49:01 PM
 Neue org.Firmware Ferguson HF8900HD_1.21.4A
Quote
       ungetestet
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on October 25, 2010, 07:49:01 PM
 Neue org.Firmware Ferguson HF8900HD_1.21.4A
Quote
       ungetestet
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on November 23, 2010, 06:55:15 PM
23.11.2010 HF8900
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on November 23, 2010, 06:55:15 PM
23.11.2010 HF8900
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on November 27, 2010, 07:49:36 AM
Neue org.Firmware und Emusoft Ferguson HF8900HD 26.11.2010
Quote
       * poprawiono obsługę kart (nowy CAID Cyfry, karty ICE)
* dodano nowe menu wyłaczania komunikatów modułÃ³w CAM
* dodano nowe menu fastscan dla kanałÃ³w holenderskich
* poprawka działania niebieskiego przycisku - zmiana proporcji obrazu
* aktualizacja bazy danych trasnponderów i satelit
* i inne drobne poprawki...
Neue und org.Firmware Emusoft Ferguson HF8900HD 26/11/2010
    * Improved support for tabs (new CAID figures, cards, ICE)
* Added new messaging shut down menu CAM
* Added new menu for channels FastScan Dutch
* Amendment of the blue button - change the aspect ratio
* Update the database and satellite trasnponderów
* And other minor changes ...
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on November 30, 2010, 08:49:58 AM
Neue org.Firmware Ferguson HF8900HD 1.28.9A

  * poprawiono obsługę kart (nowy CAID Cyfry, karty ICE)
  * dodano nowe menu wyłaczania komunikatów modułÃ³w CAM
  * dodano nowe menu fastscan dla kanałÃ³w holenderskich
  * usunięty problem wspópracy modułu polsatu z kartą C+ o niskim pakiecie
  * przywrócono poprzednią wersję numeracji kanałÃ³w w grupach satelit
  * problemy ze skalowaniem obrazu zostaną usunięte w terminie późniejszym
  * aktualizacja bazy danych trasnponderów i satelit
  * i inne drobne poprawki...
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on December 04, 2010, 08:39:20 AM
Neue Emusoft Ferguson HF8900HD-11.29.0F
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on December 07, 2010, 05:40:59 PM
 Neue org.Firmware Ferguson HF8900HD_1.29.2A
       Beschreibung:

Code: You are not allowed to view links. Register or Login
 * poprawiono obsługę kart (nowy CAID Cyfry, karty ICE)
  * dodano nowe menu wyłaczania komunikatów modułÃ³w CAM
  * dodano nowe menu fastscan dla kanałÃ³w holenderskich
  * usunięty problem wspópracy modułu polsatu z kartą C+ o niskim pakiecie
  * przywrócono poprzednią wersję numeracji kanałÃ³w w grupach satelit
  * problemy ze skalowaniem obrazu zostaną usunięte w terminie późniejszym
  * dodano obsługę napisów dla kanałÃ³w holenderskich
  * aktualizacja bazy danych trasnponderów i satelit
  * i inne drobne poprawki...
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on December 08, 2010, 05:43:43 PM
Neue Emusoft Ferguson HF8900HD-11.29.3F
       - poprawione TNTSat (w załączniku klucze do wgrania)
- jeśli chodzi o CN/TCM działa, (jak komuś nie działa prośba o screeny z parametrami kanału).
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on December 10, 2010, 06:23:51 PM
 Neue org.Firmware Ferguson HF8900HD_1.29.3A
       Beschreibung:

- dodano menu dla komunikatów modułu
- usunięty problem współpracy modułu Polsatu z kartą C+ o niskim pakiecie.
- usunięty problem współpracy z kartami MTV
- przywrócono poprzednią wersję numeracji kanałÃ³w w grupach satelit
- dodano opcje Fastscan ? tylko dla kanałÃ³w Holenderskich
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on December 15, 2010, 05:17:50 PM
Neue Emusoft Ferguson HF8900HD-11.29.5
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on December 28, 2010, 08:04:41 PM
Soft_HF-8900-11.30.0F_patch_28122010...
HF8900HD_1.30.0A_producenta_28.12.2010...
Title: Re: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on January 31, 2011, 05:51:49 AM
   8900-11313F
*TNT - working,
*HBO HD - fixed
Title: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: antox on March 16, 2011, 02:02:13 PM
Ferguson HF8900HD 11.32.3F.zip
http://www.speedyshare.com/files/27429317/Ferguson_HF8900HD_11.32.3F.zip
Title: Emusoft Ferguson-Jepssen-HF8900HD_11.24.3E
Post by: Lujdzo on October 17, 2011, 09:56:41 AM
HF8900_Hivion 11412F_13.10.2011

* 13.10.2011
1. Yahsat (52.5E) satellite list updated.

HF8900_Hivion 11412F.zip (2.49 MB)


Code: You are not allowed to view links. Register or Login
http://www.herosh.com/download/10035732/HF8900_Hivion.11412F.zip.html