You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

To use the Testbed with LICOS, create 4 terminal windows and name them VSC, SIU, EPU0, EPU1.

  • First enter:
    oslink show os
    
    If anyone of lat-elf21, lat-elf23, lat-elf24 or lat-elf25 is showing Kernel/BSP as vxw_tornado then enter:
    oslink set os lat-elf?? mv2304 --const=vxw_symbol --inst=slac
    
    for each one that you are going to use.
  • VSC:
    xyplex lat-elf21
    
    and reboot.
    Exit xyplex and enter:
    cd "/nfs/slac/g/glast/online/VSC"
    fmx xyplex VSC_load_cmx.fmx --target=lat-elf21 --tag=mv2304
    
  • Python:
    from LICOS.scriptEngine.ScriptEngineConnector import ScriptEngineConnector
    p = ScriptEngineConnector('lat-elf21',None,None)
    p.start()
    p.bootSIU()
    
  • SIU:
    cd "/nfs/slac/g/glast/online/VSC"
    fmx xyplex siu.fmx --target=lat-elf23 --tag=rad750
    
  • Python:
    p.mainFeedOn(siuId=0, pduId=0)
    p.powerOnEpuOnly(epuId=0)
    
    Wait 20 seconds
    p.bootEPU(epuId=0)
    
  • EPU0:
    fmx xyplex epu.fmx --target=lat-elf24 --tag=rad750
    
  • Python
    p.powerOnEpuOnly(epuId=1)
    
    Wait 20 seconds
    p.bootEPU(epuId=1)
    
  • EPU1:
    fmx xyplex epu.fmx --target=lat-elf25 --tag=rad750
    
  • To power on a TEM:
    p.powerOnTemOnly(temId=0)
    
  • No labels