ObiWanLansi / SIGENCE-Scenario-Tool

A little tool to place RF Devices on a map, edit, save and load them, or export the devicelist to a file (.csv, .xml, .xlsx)
GNU Lesser General Public License v3.0
6 stars 4 forks source link

List Alll RxTxType With Name And Values #96

Open ObiWanLansi opened 6 years ago

ObiWanLansi commented 6 years ago

Currently, we have only the follow ones:

  public enum RxTxType : int
    {
        // For all receivers (i.e. ID’s < 0) this parameter defines the radio being used:
        HackRF = -1,
        TwinRx = -2,
        B200Mini = -3,
        IdealSDR = -4,

        // For transmitters (i.e. ID’s >= 0) this parameter defines transmitter signal type:
        QPSK = 1,
        SIN = 2,
        FMRadio = 3,

        // Should not happen, but you never know ...
        Unknown = 4242

    } // end public enum RxTxType