PDA

View Full Version : Sim_Emu_5.00s size


][No_WaY
01-29-2003, 15:45
what the diff. bt Sim_Emu_5.00s and Sim_Emu_4.10

same number of adns and sms? or the 4.10 had more space?

and mr.simemu said in readme:
(ADN - 64) * 32 + SMS * 176 + FDN * 32 must be less than 6706
The default values of SEF50s.hex and SEF50sEN.hex are:
ADN = 208
SMS = 10
FDN = 10

if we use furmula the calculation will unmatched:
adn 208 * 32 = 6656
sms 10 * 176 = 1760
fdn 10 * 32 = 320

the total = 6656+1760+320= 8736 (must be less than 6706)
how?

can any body explain?

and what the uses of this files?and how ( i know with winexp but the steps?)
Grabar_Agenda
Grabar_sms

jsompis
01-29-2003, 16:29
4.10 MAX ADN = 250 , MAX SMS = 20 , MAX FDN = 10

5.00s ((ADN - 64 ) * 32 ) + ( SMS * 176 ) + ( FDN * 32 ) < 6706

ex => ((208-64)*32 + ( 10 *176 ) + (10*32) = 6688

JSompis

simemu
01-29-2003, 18:48
The 5.00s occupies more code than 4.10 and for this reason, the limits of ADN/SMS/FDN are smaller.

The 5.00s has all the news introduced in the 5.00 with the restrictions in the ADN/SMS/FDN.

The scripts are for Read/Write SMS's and ADN's from the SIM's using WinExplorer.

Leer_SMS.xvb is for read SMS's from SIM and store to a file.
Grabar_SMS.xvb is for write SMS's to SIM from a file.

Leer_Agenda.xvb is for read the phonebook from SIM and store to a file.
Grabar_Agenda.xvb is for write the phonebook to SIM from a file.

In my page I explain how to configure the WinExplorer to use these scripts.

Regards

][No_WaY
01-29-2003, 22:07
thanx simemu but what about the calculation? you said
The default values of SEF50s.hex and SEF50sEN.hex are:
ADN = 208
SMS = 10
FDN = 10
but cann't be like that

jsompis
how it come like that?
ex => ((208-64)*32 + ( 10 *176 ) + (10*32) = 6688
when i do calculation it be like that:
if we use furmula the calculation will unmatched:
adn 208 * 32 = 6656
sms 10 * 176 = 1760
fdn 10 * 32 = 320

the total = 6656+1760+320= 8736

Morcego
01-29-2003, 22:16
It isn't:
adn 208 * 32 = 6656
sms 10 * 176 = 1760
fdn 10 * 32 = 320
Total = 6656+1760+320= 8736

it's
adn (208 - 64) * 32 =144 * 32= 4608
sms 10 * 176 = 1760
fdn 10 * 32 = 320
Total=4608+1760+3206688

][No_WaY
01-29-2003, 23:04
thaxn bro :)

Morcego
01-31-2003, 00:52
any time :)