Files
-
hardware / bubblegum / bubblegum.brd
-
hardware / bubblegum / bubblegum.sch
-
hardware / hackrf-one / baseband.kicad_sch
-
hardware / hackrf-one / clock.kicad_sch
-
hardware / hackrf-one / frontend.kicad_sch
-
hardware / hackrf-one / hackrf-one.kicad_pcb
-
hardware / hackrf-one / hackrf-one.kicad_sch
-
hardware / hackrf-one / mcu.kicad_sch
-
hardware / jawbreaker / baseband.sch
-
hardware / jawbreaker / frontend.sch
-
hardware / jawbreaker / jawbreaker.brd
-
hardware / jawbreaker / jawbreaker.sch
-
hardware / jawbreaker / mcu.sch
-
hardware / jellybean / jellybean.brd
-
hardware / jellybean / jellybean.sch
-
hardware / lemondrop / lemondrop.brd
-
hardware / lemondrop / lemondrop.sch
-
hardware / licorice / licorice.brd
-
hardware / licorice / licorice.sch
-
hardware / LNA915 / LNA915.kicad_pcb
-
hardware / LNA915 / LNA915.sch
-
hardware / lollipop / lollipop.brd
-
hardware / lollipop / lollipop.sch
-
hardware / marzipan / baseband.sch
-
hardware / marzipan / frontend.sch
-
hardware / marzipan / marzipan.kicad_pcb
-
hardware / marzipan / marzipan.sch
-
hardware / marzipan / mcu.sch
-
hardware / neapolitan / baseband.sch
-
hardware / neapolitan / frontend.sch
-
hardware / neapolitan / mcu.sch
-
hardware / neapolitan / neapolitan.kicad_pcb
-
hardware / neapolitan / neapolitan.sch
-
hardware / operacake / operacake.kicad_pcb
-
hardware / operacake / operacake.sch
Last update 2 years 1 month
by
Gianpaolo Macario
Files | |
---|---|
.github | |
ci-scripts | |
docs | |
firmware | |
hardware | |
host | |
tools | |
.clang-format | |
.gitattributes | |
.gitignore | |
.gitmodules | |
CODE_OF_CONDUCT.md | |
COPYING | |
Dockerfile | |
Jenkinsfile | |
Readme.md | |
TRADEMARK | |
appveyor.yml |
Dockerfile# Sandbox test environment for HackRF FROM ubuntu:20.04 CMD ["/bin/bash"] # Override interactive installations and install prerequisites ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y \ build-essential \ cmake \ dfu-util \ gcc-arm-none-eabi \ git \ libfftw3-dev \ libusb-1.0-0-dev \ pkg-config \ python3 \ python3-pip \ python-is-python3 \ && rm -rf /var/lib/apt/lists/* RUN pip3 install git+https://github.com/CapableRobot/CapableRobot_USBHub_Driver --upgrade # Serial numbers for EUT and TESTER devices connected to the test server ENV EUT=RunningFromRAM ENV TESTER=0000000000000000325866e629a25623 # Inform Docker that the container is listening on port 8080 at runtime EXPOSE 8080