TNT Sat - Oscam + CCCam

freon

Registered
Messages
374
ECM LENGTH: E4, F4, EC, E0,148,1C4,14E, F4,15C
You need to use this in your Oscam to reed the card.
 

valentino50

Registered
Messages
907
New measures for TNTsat cards V5 and V6 need to be updated only on official receivers (canal ready) since yesterday 25/04/2017.
So at the moment there is no other solution to view TNTsat card.
Regards.
 

WASSERWAAGE

Registered
Messages
7
emm update of card version v5 change geocode from 0701 to 07CC. if you blocking emm, your card still on 0701, but ecm address 07CC.
 

WASSERWAAGE

Registered
Messages
7
yes, you can fix by yourself. patch ecm geo checkup. v5 without emm update have geo code 0701, ecm ask for 07CC. only compare to first geo code byte 07.

hxxp://www.streamboard.tv/oscam/browser/trunk/reader-viaccess.c#L1134
 

Felli71

Registered
Messages
351
Make EMM update with SCam, wait about 1 hour and the TNT card (test with v5) goes with OSCam.

Code:
2017/04/28 17:36:04 243DC2AA r   (reader) TNT_v5 [internal] ATR: 3F 77 18 00 00 C2 EB 45 02 6C 90 00 
2017/04/28 17:36:07 7A0940CD c   (dvbapi) Demuxer 0 no enabled matching ecmpids -> decoding is waiting for matching readers!
2017/04/28 17:36:09 243DC2AA r   (reader) TNT_v5 [internal] Buffers readed  0 bytes total time_us 4999328
2017/04/28 17:36:09 243DC2AA r   (reader) TNT_v5 [internal] Init card protocol T0, FI=1, F=372, D=12, N=0
2017/04/28 17:36:09 243DC2AA r   (reader) TNT_v5 [internal] Calculated work ETU is 6.20 us reader mhz = 500
2017/04/28 17:36:12 7A0940CD c   (dvbapi) Demuxer 0 no enabled matching ecmpids -> decoding is waiting for matching readers!
2017/04/28 17:36:14 243DC2AA r   (reader) TNT_v5 [internal] Buffers readed  0 bytes total time_us 4999604
2017/04/28 17:36:14 243DC2AA r   (reader) TNT_v5 [internal] ATR Fsmax is 5 MHz, clocking card to 5.00 (specified in reader->mhz)
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [internal] using ecm [SIZE="5"][B][COLOR="Red"]#7cc[/COLOR][/B][/SIZE] for long viaccess ecm
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [internal] type: Viaccess (non-standard atr), caid: 0500, serial: #########
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [internal] providers: 2 (FFF400,030B00)
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [internal] Maturity level [0]= older than 0 years
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [internal] ready for requests
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [internal] found card system viaccess
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [viaccess] THIS WAS A SUCCESSFUL START ATTEMPT No  1 out of max alloted of 1
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [viaccess] card detected
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [viaccess] serial: #########
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [viaccess] provider: 1, id: ####################, sa: ########, geo: empty
2017/04/28 17:36:16 243DC2AA r   (reader) TNT_v5 [viaccess] provider: 2, id: ####################, sa: ########, geo: 03 FF FF 00 
2017/04/28 17:36:17 243DC2AA r   (reader) TNT_v5 [viaccess] class: 00, expiry date: 2015/01/14 - 2019/01/13
2017/04/28 17:36:17 243DC2AA r   (reader) TNT_v5 [viaccess] CA 28 initialisation successful!
2017/04/28 17:36:17 7A0940CD c   (dvbapi) Demuxer 0 restarting decodingrequests after 15547 ms with 1 enabled and 10 disabled ecmpids!
2017/04/28 17:36:17 7A0940CD c   (dvbapi) Demuxer 0 trying to descramble PID 8 CAID 0500 PROVID 030B00 ECMPID 0375 ANY CHID PMTPID 0320 VPID 032A
2017/04/28 17:36:18 7A0940CD c      (ecm) DVB-Api ([ID:0500-030B00 SID:245C PID:0375 ONID:0001][L:15C][CW:60359FD92C96E35DBC77879DD3A56B1E]HOP:00): found (292 ms) by TNT_v5 - CSTAR
2017/04/28 17:36:24 7A0940CD c      (ecm) DVB-Api ([ID:0500-030B00 SID:245C PID:0375 ONID:0001][L:15C][CW:D36B3F054513CC1ABC77879DD3A56B1E]HOP:00): found (271 ms) by TNT_v5 - CSTAR
 
Last edited:

WASSERWAAGE

Registered
Messages
7
Hi,
Could you help us?
How can we change?
Thanks.

Try this: http://www.streamboard.tv/oscam/browser/trunk /reader-viaccess.c#L1134

change
Code:
if(csystem_data->last_geo.number_ecm == curnumber_ecm && !(ecm88Data[nanoLen - 1] == 0x01))
to
Code:
if((csystem_data->last_geo.number_ecm0xFF00) == (curnumber_ecm&0xFF00) && !(ecm88Data[nanoLen - 1] == 0x01))
 

m35istan

Registered
Messages
694
Try this: http://www.streamboard.tv/oscam/browser/trunk /reader-viaccess.c#L1134

change
Code:
if(csystem_data->last_geo.number_ecm == curnumber_ecm && !(ecm88Data[nanoLen - 1] == 0x01))
to
Code:
if((csystem_data->last_geo.number_ecm0xFF00) == (curnumber_ecm&0xFF00) && !(ecm88Data[nanoLen - 1] == 0x01))

Hi,
Give error when i compile 11384:

Code:
reader-viaccess.c: In function 'viaccess_do_ecm':
reader-viaccess.c:1134:32: error: 'struct geo_cache' has no member named 'number_ecm0xFF00'
make[1]: *** [build/mipsel-unknown-linux-gnu/reader-viaccess.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [all] Error 2

Thanks.
 

Felli71

Registered
Messages
351
What is your scam version?
3.5x (I had Scam SRF-patched)
Could you give us?
http://www.sat-universe.com/forumdisplay.php?f=30
Which channel use for update ?
No matter (I had TF1)


With Gbox you can see if EMM for your card arrive
Code:
===== Via EMM on CaID 0x0500, pid 0x168C ======
prov: FFF40, MKey: [COLOR="Blue"]01, SA: FF FF FF[/COLOR] 
-Send to card 1 -------------------------------
xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx
xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx
xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx
xx 
-EMM-------------------------------------------
xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx 
xx xx xx xx xx xx xx xx xx 
card 1 response in 163 ms
Card response: [COLOR="Blue"]90 00[/COLOR] 
===============================================

...but are not written
Code:
===== Via EMM on CaID 0x0500, pid 0x168C ======
prov: 0FF400, MKey: [COLOR="Red"]03[/COLOR]
-EMM-------------------------------------------
**************
Card response: [COLOR="Red"]98 00[/COLOR]
 
Top