Skip to content

Commit

Permalink
Add CCCamp 2015 rad1o badge board id to libhackrf
Browse files Browse the repository at this point in the history
The rad1o is the badge of the Chaos Communication Camp 2015 (CCCamp15).

The rad1o badge contains a full-featured SDR (software defined radio)
half-duplex transceiver, operating in a frequency range of about 50 MHz
- 4000 MHz, and is software compatible to the HackRF.

See https://rad1o.badge.events.ccc.de for more information.
  • Loading branch information
muellermartin committed Oct 6, 2016
1 parent 7840322 commit dccc48a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions host/libhackrf/src/hackrf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1606,6 +1606,9 @@ const char* ADDCALL hackrf_board_id_name(enum hackrf_board_id board_id)
case BOARD_ID_HACKRF_ONE:
return "HackRF One";

case BOARD_ID_RAD1O:
return "rad1o";

case BOARD_ID_INVALID:
return "Invalid Board ID";

Expand All @@ -1624,6 +1627,9 @@ extern ADDAPI const char* ADDCALL hackrf_usb_board_id_name(enum hackrf_usb_board
case USB_BOARD_ID_HACKRF_ONE:
return "HackRF One";

case USB_BOARD_ID_RAD1O:
return "rad1o";

case USB_BOARD_ID_INVALID:
return "Invalid Board ID";

Expand Down
1 change: 1 addition & 0 deletions host/libhackrf/src/hackrf.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ enum hackrf_board_id {
BOARD_ID_JELLYBEAN = 0,
BOARD_ID_JAWBREAKER = 1,
BOARD_ID_HACKRF_ONE = 2,
BOARD_ID_RAD1O = 3,
BOARD_ID_INVALID = 0xFF,
};

Expand Down

0 comments on commit dccc48a

Please sign in to comment.