##// END OF EJS Templates
Integration of basic parameters functions in the flight software...
Integration of basic parameters functions in the flight software BP1 and BP2 are computed constant LSB_FIRST_TCH is defined (will be removed later) k coefficients are initialized in the init task v, e1 and e2 are read directly in buffers and put in HK packets sending functions slightly modified spectral matrices are now correctly timestamped a few changes to LFR_basic-parameters

File last commit:

r103:b24459a013ed VHDLib206
r179:f0fdfd2b8c4c VHDL_0_1_28
Show More
load_spectral_matrix.py
21 lines | 543 B | text/x-python | PythonLexer
/ FSW-qt / bin / load_spectral_matrix.py
paul
Added a few files to the repository
r101 #!/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 = []
paul
the function asm_reorganize format the spectral matrix to the ICD format
r103 dataToWrite.append( 0x1234abcd )
dataToWrite.append( 0x4321dcba )
paul
Added a few files to the repository
r101
paul
the function asm_reorganize format the spectral matrix to the ICD format
r103 for component in range(25):
for frequencyBin in range (64):
dataToWrite.append( component + frequencyBin )
for frequencyBin in range (64):
dataToWrite.append( - (component + frequencyBin) )
paul
Bug #60 corrected...
r102
paul
Added a few files to the repository
r101 # WRITE THE DATA
print len(dataToWrite)
RMAPPlugin0.Write( matrixF0_Address0, dataToWrite )