182
S:\Hp8960\E1962B CDMA 2000\Pi Release\Reference Guide\Chapters\cdma2000_prog_tdso_fer.fm
Programming a TDSO Frame Error Rate Measurement
Offset table
290 !
300 !***Set up call parameters***
310 OUTPUT A;"CALL:OPER:MODE CALL" !Sets Operating Mode to Active Cell
320 OUTPUT A;"CALL:SYSTEM ";Systype$ !Sets System Type
330 OUTPUT A;"CALL:BAND ";Band$ !Sets Cell Band for selected System Type
340 OUTPUT A;"CALL:CHAN ";Channel ! Sets Channel for selected System Type and Cell Band
350 OUTPUT A;"CALL:POWER -50" !Sets and turns on Cell Power for selected System Type
360 OUTPUT A;"CALL:SID ";Sid! Sets System Identification
370 OUTPUT A;"CALL:NID ";Nid! Sets Network Identification
380 OUTPUT A;"CALL:RCON ";Radio_config$ !Sets Radio Configuration
390 OUTPUT A;"CALL:SOPTION ";Service_opt$ !Sets service option for selected System Type and
Radio Configuration
400 OUTPUT A;"CALL:PROT PREV6" !Sets Protocol Revision for the selected System Type
410 OUTPUT A;"CALL:PAG:DRAT FULL" !Sets Paging channel data rate to full rate
420 OUTPUT A;"CALL:PIL -7" !Sets Pilot to default
430 OUTPUT A;"CALL:SYNC -16" !Sets Sync to default
440 OUTPUT A;"CALL:PAG -12" !Sets Paging to default
450 OUTPUT A;"CALL:FCH -15.6" !Sets Traffic to default
460 !
470 PRINT "Turn on mobile station...press continue when it has found service and registered"
480 PAUSE
490 CLEAR SCREEN
500 OUTPUT A;"CALL:REG:TIMER:STATE 0" !Turns timer-based registrations off
510 WAIT 2 !Waits 2 seconds for any timer-based registrations to clear out
520 !
530 !***Page the mobile station***
540 DISP "Paging mobile station..."
550 OUTPUT A;"CALL:ORIG" !Pages the mobile station
560 OUTPUT A;"CALL:CONNECTED:STATE?" !Queries for connected/idle state...hangs until state
change detector is disarmed
570 ENTER A;Call_connected
580 IF NOT Call_connected THEN
590 DISP "Call attempt failed"
600 STOP
610 ELSE
620 DISP "Call connected"
630 END IF
640 !
650 !***Set up measurement parameters***
660 OUTPUT A;"SETUP:TFERROR:CONTINUOUS OFF" !Sets trigger arm state to single
670 OUTPUT A;"CALL:POW ";Ior ! Sets Cell Power for the selected System Type
680 OUTPUT A;"CALL:PIL ";Pilot !Sets Pilot channel level
690 OUTPUT A;"CALL:FCH ";Traffic !Sets Traffic channel level
691 OUTPUT A;"SETUP:TFERROR:CONFIDENCE:REQUIREMENT:RATIO ";Confidence
700 !
710 !***Obtain measurement results***
720 OUTPUT A;"INITIATE:TFERROR" !Initiates a frame error rate measurement
730 DISP "Measuring TDSO FER"
731 LOOP
732 WAIT 1
740 OUTPUT A;"INIT:DONE?"
760 ENTER A;Tfer_done$