Notifications
Clear all

Personal Setup in 5035

6 Posts
2 Users
0 Likes
8,223 Views
(@paolodecapitani)
New Member
Joined: 12 years ago
Posts: 3
Topic starter  

Hi everyone
I'm a new user and I'd like tohave your help

I wanna use 5035 on field; not with MCS.
I need to make the personal setup in 5035, recall it and use it.

Please: check out if I understood ‘well’ the instructions:
fLow = 15Hz
fHigh = 150Hz
RBW = 10 times smaller than the SPAN; in this case the span is 150Hz-15Hz=135Hz /10 = 13.5Hz; so 3Hz is OK
VBW = I DO NOT KNOW which is the best frequency value: can you help?
SpTime = 500msec
Atten = Auto (means automatically chosen from 10dB to 20dB)
RefLev = I do not set nothing.. I’m not interested in
Range = u (microT)
Detec = RMS

I understand that to can store these settings (this new configuration), in Setup, and I have to give a name higher than 200; for examle 201.

To recall the setup 201, I have to go in RunPrg and type 201

Then I can go on field and make measures

Is it ok for you guys?
Anyone of you has made the same experience, the same use of 5035 (or5030)?

Thanx a lot
Paolo


   
Quote
(@moderator)
Noble Member Admin
Joined: 14 years ago
Posts: 1044
 

Use the MCS file manager, there you can edit all hotkeys as needed (programed in P-Code).
More tips and tricks on P-Code see viewforum.php?f=22

Snip


   
ReplyQuote
(@paolodecapitani)
New Member
Joined: 12 years ago
Posts: 3
Topic starter  

I've checked the forum, but I have to say that I need your assistance again
Can you post here for me the P-Code I have to write in MCS and upload to my 5035, in order to "transform" the hotkey 2 from standard Power 45-65 to this one?
In this way I can learn and make all the modification I need, for all other hot key
fLow = 15Hz
fHigh = 150Hz
RBW = 10 times smaller than the SPAN; in this case the span is 150Hz-15Hz=135Hz /10 = 13.5Hz; so 3Hz is OK
VBW = I DO NOT KNOW which is the best frequency value: can you help?
SpTime = 500msec
Atten = Auto (means automatically chosen from 10dB to 20dB)
RefLev = I do not set nothing.. I’m not interested in
Range = u (microT)
Detec = RMS

Thanx a lot
Paolo


   
ReplyQuote
(@moderator)
Noble Member Admin
Joined: 14 years ago
Posts: 1044
 

Simply update the original code

 SETUP
     ResolutionBandwidth:13 SweepTime:1000
 LDCONST 0.045
 STORESET StartFrequency
 LDCONST 0.065
 STORESET StopFrequency
 PRINTSTR 03h, "Power"
 STOP

to

 SETUP
     ResolutionBandwidth:13 SweepTime:500
 LDCONST 0.015
 STORESET StartFrequency
 LDCONST 0.150
 STORESET StopFrequency
 PRINTSTR 03h, "Power"
 STOP

This will change sampletime, start frequency and stop frequency as needed.
For any other settings please have a look to the API or the "sample" code of the other hotkeys...

Snip


   
ReplyQuote
(@paolodecapitani)
New Member
Joined: 12 years ago
Posts: 3
Topic starter  

THANX A LOT
I'll try
Let you know

And... what do you mean with:
API or the "sample" code of the other hotkeys..

Paolo


   
ReplyQuote
(@moderator)
Noble Member Admin
Joined: 14 years ago
Posts: 1044
 

"sample" code of the other hotkeys..

Simply look at the hotkey codes shown in the MCS file manager
You get the API at viewtopic.php?f=8&t=1048

Snip


   
ReplyQuote
Share: