A1.1.1 Example of intermediary results Anchor A18.7.5 A18.7.5
...
Figure 518 presents an example of the content of an auto-complete of a variable of the type LinkResult
Figure 518526: Example of content of the LinkResult interface Anchor F526 F526
(auto-complete “CTRL+SPACE” in IntelJidea)
...
The EPP allows you to access interemediary results. The following is a non-exhaustive list of the LinkResult interface:
AntennaResult rxAntenna(): Receiver antenna results in the direction of the transmitter
...
double getRxNoiseFloor() get the receiver noise floor
Similarly, if you look one level down in the RxAntenna() that is follows an AntennaResult interface, you will see further parameters listed:
Anchor
...
F527
Figure 519527: Example of content of the AntennaResult interface F527
(auto-complete “CTRL+SPACE” in IntelJidea)
And likewise, if you look into the getposition() that is follows a Point2D interface, you will have the choice to select either getX() or get(Y) for the X and Y position of the received antenna of the victim.
Figure 520528: Example of content of the Point2D interface Anchor F528 F528
(auto-complete “CTRL+SPACE” in IntelJidea)
...