Skip to content

Commit

Permalink
Add more variant names
Browse files Browse the repository at this point in the history
  • Loading branch information
cozycactus committed Oct 14, 2023
1 parent e465683 commit 2796d98
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/librx888.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,14 @@ enum rx888_device {
};

enum rx888_variant {
RX888_VARIANT_UNKNOWN = 0,
RX888_VARIANT_UNKNOWN = 0x00,
RX888_VARIANT_BBRF103 = 0x01,
RX888_VARIANT_HF103 = 0x02,
RX888_VARIANT_RX888 = 0x03,
RX888_VARIANT_RX888MK2 = 0x04,
RX888_VARIANT_RX999 = 0x05,
RX888_VARIANT_RXLUCY = 0x06,
RX888_VARIANT_RX888MK3 = 0x07,
};

int rx888_set_hf_attenuation(void *dev, double rf_gain);
Expand Down

0 comments on commit 2796d98

Please sign in to comment.