How to use analyzer #403
-
Hi
Then I use this command in matlab
I saw some plot and It seems to be ok (i.e. timing alignment information) However, I have no clue how to use other function such as
It seems that
It seems that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @fllay, thanks for looking into the analyzers. The
which show the offset and size you have to provide to the function (in a similar way to what you do for the PRACH). As for the PUSCH and PUCCH analyzers, they're a bit more complicated. First of all, you need to set the PHY log level to debug, otherwise you won't get all the data you need. Then, you have to look for the PUSCH transmission you want to analyze and find the corresponding transmitting slot - for instance, the following PUSCH is associated to the slot of the previous example (see, they have the same slot number 690.17)
This is what you need to select when the We are currently preparing a tutorial that will be available together with the rest of the documentation. In the meantime, I'm attaching a couple of slides that may be helpful - let me know if you need more help! |
Beta Was this translation helpful? Give feedback.
Hi @fllay, thanks for looking into the analyzers.
The
srsResourceGridAnalyzer
is very simple, you only need to pick an uplink slot from the log, any of the lines like the following onewhich show the offset and size you have to provide to the function (in a similar way to what you do for the PRACH).
As for the PUSCH and PUCCH analyzers, they're a bit more complicated. First of all, you need to set the PHY log level to debug, otherwise you won't get all the data you need. Then, you have to look for the PUSCH transmission you want to analyze and find the corresponding transmitting slot - for in…