From cf6eef61187aa1c2864b0ce4140fb7fc1c219c54 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 18 Feb 2016 09:36:53 -0800 Subject: [PATCH] Move adsbus into its own dir. --- .gitignore | 3 --- Makefile => adsbus/Makefile | 0 README.md => adsbus/README.md | 0 adsbus.c => adsbus/adsbus.c | 0 airspy_adsb.c => adsbus/airspy_adsb.c | 0 airspy_adsb.h => adsbus/airspy_adsb.h | 0 beast.c => adsbus/beast.c | 0 beast.h => adsbus/beast.h | 0 common.c => adsbus/common.c | 0 common.h => adsbus/common.h | 0 incoming.c => adsbus/incoming.c | 0 incoming.h => adsbus/incoming.h | 0 json.c => adsbus/json.c | 0 json.h => adsbus/json.h | 0 outgoing.c => adsbus/outgoing.c | 0 outgoing.h => adsbus/outgoing.h | 0 raw.c => adsbus/raw.c | 0 raw.h => adsbus/raw.h | 0 receive.c => adsbus/receive.c | 0 receive.h => adsbus/receive.h | 0 send.c => adsbus/send.c | 0 send.h => adsbus/send.h | 0 stats.c => adsbus/stats.c | 0 stats.h => adsbus/stats.h | 0 wakeup.c => adsbus/wakeup.c | 0 wakeup.h => adsbus/wakeup.h | 0 26 files changed, 3 deletions(-) rename Makefile => adsbus/Makefile (100%) rename README.md => adsbus/README.md (100%) rename adsbus.c => adsbus/adsbus.c (100%) rename airspy_adsb.c => adsbus/airspy_adsb.c (100%) rename airspy_adsb.h => adsbus/airspy_adsb.h (100%) rename beast.c => adsbus/beast.c (100%) rename beast.h => adsbus/beast.h (100%) rename common.c => adsbus/common.c (100%) rename common.h => adsbus/common.h (100%) rename incoming.c => adsbus/incoming.c (100%) rename incoming.h => adsbus/incoming.h (100%) rename json.c => adsbus/json.c (100%) rename json.h => adsbus/json.h (100%) rename outgoing.c => adsbus/outgoing.c (100%) rename outgoing.h => adsbus/outgoing.h (100%) rename raw.c => adsbus/raw.c (100%) rename raw.h => adsbus/raw.h (100%) rename receive.c => adsbus/receive.c (100%) rename receive.h => adsbus/receive.h (100%) rename send.c => adsbus/send.c (100%) rename send.h => adsbus/send.h (100%) rename stats.c => adsbus/stats.c (100%) rename stats.h => adsbus/stats.h (100%) rename wakeup.c => adsbus/wakeup.c (100%) rename wakeup.h => adsbus/wakeup.h (100%) diff --git a/.gitignore b/.gitignore index 55c3eac..bbf313b 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,3 @@ # Debug files *.dSYM/ - -# Binaries -adsbus diff --git a/Makefile b/adsbus/Makefile similarity index 100% rename from Makefile rename to adsbus/Makefile diff --git a/README.md b/adsbus/README.md similarity index 100% rename from README.md rename to adsbus/README.md diff --git a/adsbus.c b/adsbus/adsbus.c similarity index 100% rename from adsbus.c rename to adsbus/adsbus.c diff --git a/airspy_adsb.c b/adsbus/airspy_adsb.c similarity index 100% rename from airspy_adsb.c rename to adsbus/airspy_adsb.c diff --git a/airspy_adsb.h b/adsbus/airspy_adsb.h similarity index 100% rename from airspy_adsb.h rename to adsbus/airspy_adsb.h diff --git a/beast.c b/adsbus/beast.c similarity index 100% rename from beast.c rename to adsbus/beast.c diff --git a/beast.h b/adsbus/beast.h similarity index 100% rename from beast.h rename to adsbus/beast.h diff --git a/common.c b/adsbus/common.c similarity index 100% rename from common.c rename to adsbus/common.c diff --git a/common.h b/adsbus/common.h similarity index 100% rename from common.h rename to adsbus/common.h diff --git a/incoming.c b/adsbus/incoming.c similarity index 100% rename from incoming.c rename to adsbus/incoming.c diff --git a/incoming.h b/adsbus/incoming.h similarity index 100% rename from incoming.h rename to adsbus/incoming.h diff --git a/json.c b/adsbus/json.c similarity index 100% rename from json.c rename to adsbus/json.c diff --git a/json.h b/adsbus/json.h similarity index 100% rename from json.h rename to adsbus/json.h diff --git a/outgoing.c b/adsbus/outgoing.c similarity index 100% rename from outgoing.c rename to adsbus/outgoing.c diff --git a/outgoing.h b/adsbus/outgoing.h similarity index 100% rename from outgoing.h rename to adsbus/outgoing.h diff --git a/raw.c b/adsbus/raw.c similarity index 100% rename from raw.c rename to adsbus/raw.c diff --git a/raw.h b/adsbus/raw.h similarity index 100% rename from raw.h rename to adsbus/raw.h diff --git a/receive.c b/adsbus/receive.c similarity index 100% rename from receive.c rename to adsbus/receive.c diff --git a/receive.h b/adsbus/receive.h similarity index 100% rename from receive.h rename to adsbus/receive.h diff --git a/send.c b/adsbus/send.c similarity index 100% rename from send.c rename to adsbus/send.c diff --git a/send.h b/adsbus/send.h similarity index 100% rename from send.h rename to adsbus/send.h diff --git a/stats.c b/adsbus/stats.c similarity index 100% rename from stats.c rename to adsbus/stats.c diff --git a/stats.h b/adsbus/stats.h similarity index 100% rename from stats.h rename to adsbus/stats.h diff --git a/wakeup.c b/adsbus/wakeup.c similarity index 100% rename from wakeup.c rename to adsbus/wakeup.c diff --git a/wakeup.h b/adsbus/wakeup.h similarity index 100% rename from wakeup.h rename to adsbus/wakeup.h