##// END OF EJS Templates
the interrupt sub routine related to the waveform picker is now lighter...
the interrupt sub routine related to the waveform picker is now lighter no more picks are observed on the waveforms

File last commit:

r103:b24459a013ed VHDLib206
r112:5b5da8d2c053 VHDLib206
Show More
load_spectral_matrix.py
21 lines | 543 B | text/x-python | PythonLexer
/ FSW-qt / bin / load_spectral_matrix.py
#!/usr/bin/lppmon -e
address_to_read = 0x80000f08
val = RMAPPlugin0.Read( address_to_read, 1)
matrixF0_Address0 = val[0]
print hex(matrixF0_Address0)
# BUILD THE DATA
dataToWrite = []
dataToWrite.append( 0x1234abcd )
dataToWrite.append( 0x4321dcba )
for component in range(25):
for frequencyBin in range (64):
dataToWrite.append( component + frequencyBin )
for frequencyBin in range (64):
dataToWrite.append( - (component + frequencyBin) )
# WRITE THE DATA
print len(dataToWrite)
RMAPPlugin0.Write( matrixF0_Address0, dataToWrite )