Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Figure 518 presents an example of the content of an auto-complete of a variable of the type LinkResult 

 


Anchor
F518F526F518
F526
Figure 518526: Example of content of the LinkResult interface
(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
F519F527F519
F527
Figure 519527: Example of content of the AntennaResult interface
(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.

Anchor
F520F528F520
F528
Figure 520528: Example of content of the Point2D interface
(auto-complete “CTRL+SPACE” in IntelJidea)

 

...