diff --git a/data/static/basic.js b/data/static/basic.js
deleted file mode 100644
index 5cbb8d72b..000000000
--- a/data/static/basic.js
+++ /dev/null
@@ -1,43 +0,0 @@
-var meshtasticClient;
-var connectionOne;
-
-
-// Important: the connect action must be called from a user interaction (e.g. button press), otherwise the browsers won't allow the connect
-function connect() {
-
- // Create new connection
- var httpconn = new meshtasticjs.IHTTPConnection();
-
- // Set connection params
- let sslActive;
- if (window.location.protocol === 'https:') {
- sslActive = true;
- } else {
- sslActive = false;
- }
- let deviceIp = window.location.hostname; // Your devices IP here
-
-
- // Add event listeners that get called when a new packet is received / state of device changes
- httpconn.addEventListener('fromRadio', function (packet) { console.log(packet) });
-
- // Connect to the device async, then send a text message
- httpconn.connect(deviceIp, sslActive)
- .then(result => {
-
- alert('device has been configured')
- // This gets called when the connection has been established
- // -> send a message over the mesh network. If no recipient node is provided, it gets sent as a broadcast
- return httpconn.sendText('meshtastic is awesome');
-
- })
- .then(result => {
-
- // This gets called when the message has been sucessfully sent
- console.log('Message sent!');
- })
-
- .catch(error => { console.log(error); });
-
-}
-
diff --git a/data/static/index.html b/data/static/index.html
deleted file mode 100644
index 663203013..000000000
--- a/data/static/index.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/data/static/meshtastic.js.gz b/data/static/meshtastic.js.gz
deleted file mode 100644
index 3f02faf02..000000000
Binary files a/data/static/meshtastic.js.gz and /dev/null differ
diff --git a/docs/.well-known/assetlinks.json b/docs/.well-known/assetlinks.json
deleted file mode 100644
index 85d22f4a6..000000000
--- a/docs/.well-known/assetlinks.json
+++ /dev/null
@@ -1,9 +0,0 @@
-[{
- "relation": ["delegate_permission/common.handle_all_urls"],
- "target": {
- "namespace": "android_app",
- "package_name": "com.geeksville.mesh",
- "sha256_cert_fingerprints":
- ["D0:05:E7:8B:D2:1B:FA:94:56:1D:6B:90:EB:53:07:1A:74:4F:D9:C2:6F:13:87:6A:D9:17:4F:C2:59:48:02:9D", "42:17:52:DC:57:40:38:B5:6B:86:61:1C:2F:47:DB:2B:0F:A2:EA:59:E1:18:9C:AA:90:8D:37:D6:CD:40:0E:BB", "A9:3B:45:65:68:C1:75:DB:08:00:A0:9F:06:77:7F:89:2D:81:24:32:AD:B8:A3:DF:73:BC:3E:7F:06:C8:0C:6D"]
- }
-}]
diff --git a/docs/README.md b/docs/README.md
deleted file mode 100644
index 4a124156f..000000000
--- a/docs/README.md
+++ /dev/null
@@ -1,97 +0,0 @@
-# What is Meshtastic?
-
-Meshtastic® is a project that lets you use
-inexpensive (\$30 ish) GPS radios as an extensible, long battery life, secure, mesh GPS communicator. These radios are great for hiking, skiing, paragliding - essentially any hobby where you don't have reliable internet access. Each member of your private mesh can always see the location and distance of all other members and any text messages sent to your group chat.
-
-The radios automatically create a mesh to forward packets as needed, so everyone in the group can receive messages from even the furthest member. The radios will optionally work with your phone, but no phone is required.
-
-Note: Questions after reading this? See our new [forum](https://meshtastic.discourse.group/).
-
-## Uses
-
-- Outdoor sports where cellular coverage is limited. (Hiking, Skiing, Boating, Paragliding, Gliders etc..)
-- Applications where closed source GPS communicators just won't cut it (it is easy to add features for glider pilots etc...)
-- Secure long-range communication within groups without depending on cellular providers
-- Finding your lost kids ;-)
-- Through our [python API](https://pypi.org/project/meshtastic/) use these inexpensive radios to easily add mesh networking to your own projects.
-
-[](https://www.youtube.com/watch?v=WlNbMbVZlHI "Meshtastic early demo")
-
-## Features
-
-Not all of these features are fully implemented yet - see **important** disclaimers below. But they should be in by the time we decide to call this project beta (three months?)
-
-- Very long battery life (should be about eight days with the beta software)
-- Built in GPS and [LoRa](https://en.wikipedia.org/wiki/LoRa) radio, but we manage the radio automatically for you
-- Long range - a few miles per node but each node will forward packets as needed
-- Secure - channels are encrypted by AES256 (But see important disclaimers below wrt this feature)
-- Shows direction and distance to all members of your channel
-- Directed or broadcast text messages for channel members
-- Open and extensible codebase supporting multiple hardware vendors - no lock in to one vendor
-- Communication API for bluetooth devices (such as our Android app) to use the mesh. An iOS application is in the works. And [Meshtastic-python](https://pypi.org/project/meshtastic/) provides access from desktop computers.
-- Very easy sharing of private secured channels. Just share a special link or QR code with friends and they can join your encrypted mesh
-
-This project is currently in beta testing but it is fairly stable and feature complete - if you have questions please [join our discussion forum](https://meshtastic.discourse.group/).
-
-This software is 100% open source and developed by a group of hobbyist experimenters. No warranty is provided, if you'd like to improve it - we'd love your help. Please post in the [forum](https://meshtastic.discourse.group/).
-
-### Beginner's Guide
-
-For an detailed walk-through aimed at beginners, we recommend [meshtastic.letstalkthis.com](https://meshtastic.letstalkthis.com/).
-
-### Related Groups
-
-Telegram group for **Italy**-based users [t.me/meshtastic_italia](http://t.me/meshtastic_italia) (Italian language, unofficial).
-Telegram group for **Russian**-based users [t.me/meshtastic_russia](https://t.me/meshtastic_russia) (Russian language, unofficial).
-
-# Updates
-
-Note: Updates are happening almost daily, only major updates are listed below. For more details see our forum.
-
-- 09/14/2020 - 1.0.0 Now with over 1700 android users, over 2000 nodes and translated into 15 languages. This project will always be a "beta" experiment, but now quite usable. We are currently selecting 1.1 features in our discussion forum.
-- 06/24/2020 - 0.7.x Now with over 1000 android users, over 600 people using the radios and translated into 22 languages. Fairly stable and we are working through bugs to get to 1.0.
-- 06/04/2020 - 0.6.7 Beta releases of both the application and the device code are released. Features are fairly solid now with a sizable number of users.
-- 04/28/2020 - 0.6.0 [Python API](https://pypi.org/project/meshtastic/) released. Makes it easy to use meshtastic devices as "zero config / just works" mesh transport adapters for other projects.
-- 04/20/2020 - 0.4.3 Pretty solid now both for the android app and the device code. Many people have donated translations and code. Probably going to call it a beta soon.
-- 03/03/2020 - 0.0.9 of the Android app and device code is released. Still an alpha but fairly functional.
-- 02/25/2020 - 0.0.4 of the Android app is released. This is a very early alpha, see below to join the alpha-testers group.
-- 02/23/2020 - 0.0.4 release. Still very bleeding edge but much closer to the final power management, a charged T-BEAM should run for many days with this load. If you'd like to try it, we'd love your feedback. Click [here](https://github.com/meshtastic/Meshtastic-esp32/blob/master/README.md) for instructions.
-- 02/20/2020 - Our first alpha release (0.0.3) of the radio software is ready brave early people.
-
-## Meshtastic Android app
-
-Our Android application is available here:
-
-[](https://play.google.com/store/apps/details?id=com.geeksville.mesh&referrer=utm_source%3Dgithub-homepage)
-
-The link above will return older more stable releases. We would prefer if you join our alpha-test group, because the application is rapidly improving. Three steps to opt-in to the alpha- test:
-
-1. Join [this Google group](https://groups.google.com/forum/#!forum/meshtastic-alpha-testers) with the account you use in Google Play.
-2. Go to this [URL](https://play.google.com/apps/testing/com.geeksville.mesh) to opt-in to the alpha test.
-3. If you encounter any problems or have questions, post in our [forum](https://meshtastic.discourse.group/) and we'll help.
-
-If you'd like to help with development, the source code is [on github](https://github.com/meshtastic/Meshtastic-Android).
-
-The app is also distributed for Amazon Fire devices via the Amazon appstore: [](https://www.amazon.com/Geeksville-Industries-Meshtastic/dp/B08CY9394Q)
-
-## Supported hardware
-
-We currently support two brands of radios. The [TTGO T-Beam](https://www.aliexpress.com/item/4001178678568.html) and the [Heltec LoRa 32](https://heltec.org/project/wifi-lora-32/). Most people should buy the T-Beam and a 18650 battery (total cost less than \$35). Also, the version of the T-Beam we link to is shipped with Meshtastic **preinstalled** by TTGO, so you don't have to install it yourself.
-
-Make sure to buy the frequency range which is legal for your country. For the USA, you should buy the 915MHz version. Getting a version that include a screen is optional, but highly recommended.
-
-Instructions for installing prebuilt firmware can be found [here](https://github.com/meshtastic/Meshtastic-esp32/blob/master/README.md).
-
-For a nice looking cases:
-
-- 3D printable cases
- 1. TTGO T-Beam V0 see this [design](https://www.thingiverse.com/thing:3773717) by [bsiege](https://www.thingiverse.com/bsiege).
- 2. TTGO T_Beam V1 (SMA) see this [design](https://www.thingiverse.com/thing:3830711) by [rwanrooy](https://www.thingiverse.com/rwanrooy) or this [remix](https://www.thingiverse.com/thing:3949330) by [8ung](https://www.thingiverse.com/8ung)
- 3. TTGO T_Beam V1 (IPEX) see this [design](https://www.thingiverse.com/thing:4587297) by [drewsed](https://www.thingiverse.com/drewsed)
- 4. Heltec Lora32 see this [design](https://www.thingiverse.com/thing:3125854) by [ornotermes](https://www.thingiverse.com/ornotermes).
-- Laser-cut cases
- 1. TTGO T_Beam V1 (SMA) see this [design](https://www.thingiverse.com/thing:4552771) by [jefish](https://www.thingiverse.com/jefish)
-
-# IMPORTANT DISCLAIMERS AND FAQ
-
-For a listing of currently missing features and a FAQ click [here](faq.md).
diff --git a/docs/SupportedHardware.md b/docs/SupportedHardware.md
deleted file mode 100644
index 5cbc46616..000000000
--- a/docs/SupportedHardware.md
+++ /dev/null
@@ -1,8 +0,0 @@
-| Vendor | Product line | Version | Board labels | Notes | URL |
-|---|---|---|---|---|---|
-| TTGO | T-Beam | 0.7 | T22_V07 20180711 | LoRa 433/470MHz *OR* LoRa 868/915MHz , GPS ublox NEO-6M , battery holder for Li-Ion 18650 | [buy](https://www.aliexpress.com/item/4000574335430.html) |
-| TTGO | T-Beam | 1.0 | | | [buy](https://www.aliexpress.com/item/4001178678568.html) |
-| TTGO | T-Beam | 1.1 | T22_V11 20191212 | LoRa 433/470MHz *OR* LoRa 868/915MHz *OR* LoRa 923MHz , GPS ublox NEO-M8N , battery holder for Li-Ion 18650 | [buy](https://www.aliexpress.com/item/4001178678568.html) |
-| TTGO | Lora32 | 2.0 | *missing* | LoRa 433/470MHz *OR* LoRa 868/915MHz , OLED SSD1306 , SD card holder | [buy](https://www.aliexpress.com/item/4000211331316.html) |
-| TTGO | Lora32 | 2.1 | T3_V1.6 20180606 | LoRa 32 (V2) , SD card holder | [buy](https://www.aliexpress.com/item/4000119208093.html) |
-| Heltec | Lora 32 | V2 | V2 | LoRa 433/470MHz *OR* LoRa 868/915MHz | [buy](https://heltec.org/project/wifi-lora-32/) |
diff --git a/docs/_config.yml b/docs/_config.yml
deleted file mode 100644
index 1cb1a55ba..000000000
--- a/docs/_config.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-theme: jekyll-theme-cayman
-
-title: Meshtastic
-description: An opensource hiking, pilot, skiing, secure GPS mesh communicator
-google_analytics: G-DRZ5H5EXHV
-
-include: [".well-known"]
-
diff --git a/docs/desk-video-screenshot.png b/docs/desk-video-screenshot.png
deleted file mode 100644
index 01aa6e19e..000000000
Binary files a/docs/desk-video-screenshot.png and /dev/null differ
diff --git a/docs/editing-this-site.md b/docs/editing-this-site.md
deleted file mode 100644
index c26e654b9..000000000
--- a/docs/editing-this-site.md
+++ /dev/null
@@ -1,10 +0,0 @@
-If you'd like to edit this website and test it locally:
-
-Not yet implemented:
-Per https://help.github.com/en/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll
-
-* follow instructions here: https://jekyllrb.com/docs/installation/ubuntu/
-* run "run-locally.sh"
-* view webpages at localhost:4000
-
-The template seems to come from here: https://github.com/pages-themes/cayman
diff --git a/docs/faq.md b/docs/faq.md
deleted file mode 100644
index b17a693fd..000000000
--- a/docs/faq.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# Disclaimers
-
-This project is still pretty young but moving at a pretty good pace. Not all features are fully implemented in the current alpha builds.
-Most of these problems should be solved by the beta release (within three months):
-
-- We don't make these devices and they haven't been tested by UL or the FCC. If you use them you are experimenting and we can't promise they won't burn your house down ;-)
-- The encryption implementation is good but see this list of [caveats](software/crypto.md#summary-of-strengthsweaknesses-of-our-current-implementation) to determine risks you might face.
-- A number of (straightforward) software work items have to be completed before battery life matches our measurements, currently battery life is about three days. Join us on chat if you want the spreadsheet of power measurements/calculations.
-- The Android API needs to be documented better
-- No one has written an iOS app yet. But some good souls [are talking about it](https://github.com/meshtastic/Meshtastic-esp32/issues/14) ;-)
-
-For more details see the [device software TODO](https://github.com/meshtastic/Meshtastic-esp32/blob/master/docs/software/TODO.md) or the [Android app TODO](https://github.com/meshtastic/Meshtastic-Android/blob/master/TODO.md).
-
-# FAQ
-
-If you have a question missing from this faq, please [ask in our discussion forum](https://meshtastic.discourse.group/). And if you are feeling extra generous send in a pull-request for this faq.md with whatever we answered ;-).
-
-## Q: Which of the various supported radios should I buy?
-
-Basically you just need the radio + (optional but recommended) battery. The TBEAM is usually better because it has gps and huge battery socket. The Heltec is basically the same hardware but without the GPS (the phone provides position data to the radio in that case, so the behavior is similar - but it does burn some battery in the phone). Also the battery for the Heltec can be smaller.
-
-In addition to Aliexpress, (banggood.com) usually has stock and faster shipping, or Amazon. If buying a TBEAM, make sure to buy a version that includes the OLED screen - this project doesn't absolutely require the screen, but we use it if is installed.
-
-@claesg has added links to various 3D printable cases, you can see them at (www.meshtastic.org).
-
-## Q: Do you have plans to commercialize this project
-
-Nope. though if some other person/group wanted to use this software and a more customized device we think that would be awesome (as long as they obey the GPL license).
-
-## Q: Does this project use patented algorithms?
-
-(Kindly borrowed from the geeks at [ffmpeg](http://ffmpeg.org/legal.html))
-
-We do not know, we are not lawyers so we are not qualified to answer this. Also we have never read patents to implement any part of this, so even if we were qualified we could not answer it as we do not know what is patented. Furthermore the sheer number of software patents makes it impossible to read them all so no one (lawyer or not) could answer such a question with a definite no. We are merely geeks experimenting on a fun and free project.
diff --git a/docs/hardware/AN1200_22_Semtech_LoRa_Basics_v2_STD.pdf b/docs/hardware/AN1200_22_Semtech_LoRa_Basics_v2_STD.pdf
deleted file mode 100644
index 751a6c8d1..000000000
Binary files a/docs/hardware/AN1200_22_Semtech_LoRa_Basics_v2_STD.pdf and /dev/null differ
diff --git a/docs/hardware/AXP192 Datasheet_v1.1_en_draft_2211.pdf b/docs/hardware/AXP192 Datasheet_v1.1_en_draft_2211.pdf
deleted file mode 100644
index fe79b1075..000000000
Binary files a/docs/hardware/AXP192 Datasheet_v1.1_en_draft_2211.pdf and /dev/null differ
diff --git a/docs/hardware/DS_SX1261-2_V1.2.pdf b/docs/hardware/DS_SX1261-2_V1.2.pdf
deleted file mode 100644
index 2d6c51cb5..000000000
Binary files a/docs/hardware/DS_SX1261-2_V1.2.pdf and /dev/null differ
diff --git a/docs/hardware/DS_SX1276-7-8-9_W_APP_V6.pdf b/docs/hardware/DS_SX1276-7-8-9_W_APP_V6.pdf
deleted file mode 100644
index 2a9298797..000000000
Binary files a/docs/hardware/DS_SX1276-7-8-9_W_APP_V6.pdf and /dev/null differ
diff --git a/docs/hardware/LoRa Design Guide.pdf b/docs/hardware/LoRa Design Guide.pdf
deleted file mode 100644
index af4abade0..000000000
Binary files a/docs/hardware/LoRa Design Guide.pdf and /dev/null differ
diff --git a/docs/hardware/NEO-6_DataSheet_(GPS.G6-HW-09005).pdf b/docs/hardware/NEO-6_DataSheet_(GPS.G6-HW-09005).pdf
deleted file mode 100644
index edce4d08a..000000000
Binary files a/docs/hardware/NEO-6_DataSheet_(GPS.G6-HW-09005).pdf and /dev/null differ
diff --git a/docs/hardware/RFM95_96_97_98W.pdf b/docs/hardware/RFM95_96_97_98W.pdf
deleted file mode 100644
index f8d184883..000000000
Binary files a/docs/hardware/RFM95_96_97_98W.pdf and /dev/null differ
diff --git a/docs/hardware/T-SX1262.pdf b/docs/hardware/T-SX1262.pdf
deleted file mode 100644
index 0e9fbfc11..000000000
Binary files a/docs/hardware/T-SX1262.pdf and /dev/null differ
diff --git a/docs/hardware/T_BeamV1.0.pdf b/docs/hardware/T_BeamV1.0.pdf
deleted file mode 100644
index 6e87b33f1..000000000
Binary files a/docs/hardware/T_BeamV1.0.pdf and /dev/null differ
diff --git a/docs/hardware/WIFI_LoRa_32_V2(868-915).PDF b/docs/hardware/WIFI_LoRa_32_V2(868-915).PDF
deleted file mode 100644
index 11d499e7d..000000000
Binary files a/docs/hardware/WIFI_LoRa_32_V2(868-915).PDF and /dev/null differ
diff --git a/docs/hardware/air530/Air530 GPS Manual Text English.pdf b/docs/hardware/air530/Air530 GPS Manual Text English.pdf
deleted file mode 100644
index 99c52ba3e..000000000
Binary files a/docs/hardware/air530/Air530 GPS Manual Text English.pdf and /dev/null differ
diff --git a/docs/hardware/air530/Air530_GPS_User_Booklet.V1.7.pdf b/docs/hardware/air530/Air530_GPS_User_Booklet.V1.7.pdf
deleted file mode 100644
index 5b0528ad6..000000000
Binary files a/docs/hardware/air530/Air530_GPS_User_Booklet.V1.7.pdf and /dev/null differ
diff --git a/docs/hardware/axp192-complete-datasheet-chinese.pdf b/docs/hardware/axp192-complete-datasheet-chinese.pdf
deleted file mode 100644
index b7e6e4042..000000000
Binary files a/docs/hardware/axp192-complete-datasheet-chinese.pdf and /dev/null differ
diff --git a/docs/hardware/corvus.md b/docs/hardware/corvus.md
deleted file mode 100644
index f1089f3ae..000000000
--- a/docs/hardware/corvus.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# Notes on @BigCorvus boards
-
-## Board version 1.1
-
-variant name lora_relay_v1
-
-### Remaining TODOs
-
-- power hold for the ST7735
-- look at example sketch
-- turn on xmit boost
-
-## Recommendations for future boards
-
-@BigCorvus your board is **really** nice. Here's some ideas for the future:
-
-- make the SWDIO header more standard (the small ARM 2x5 micro footprint?) or at least througholes so it is easy to solder a header
-
-## How to program bootloader
-
-Download from here: https://github.com/adafruit/Adafruit_nRF52_Bootloader/releases
-
-```
-nrfjprog -f nrf52 --eraseall
-Erasing user available code and UICR flash areas.
-Applying system reset.
-
-nrfjprog -f nrf52 --program feather_nrf52840_express_bootloader-0.3.2_s140_6.1.1.hex
-Parsing hex file.
-Reading flash area to program to guarantee it is erased.
-Checking that the area to write is not protected.
-Programming device.
-```
-
-Then reboot the board, if all went well it now shows up as a mountable filesystem on your USB bus.
diff --git a/docs/hardware/cubecell-TODO.md b/docs/hardware/cubecell-TODO.md
deleted file mode 100644
index b96acbb36..000000000
--- a/docs/hardware/cubecell-TODO.md
+++ /dev/null
@@ -1,6 +0,0 @@
-
-https://heltec-automation-docs.readthedocs.io/en/latest/cubecell/index.html
-
-https://github.com/HelTecAutomation/ASR650x-Arduino?utm_source=platformio.org&utm_medium=docs
-
-* Either portfreertos or make not theaded versions of Lock, WorkerThread, Queue (probably the latter).
diff --git a/docs/hardware/esp32_datasheet_en.pdf b/docs/hardware/esp32_datasheet_en.pdf
deleted file mode 100644
index fe70244fd..000000000
Binary files a/docs/hardware/esp32_datasheet_en.pdf and /dev/null differ
diff --git a/docs/hardware/heltec-wifi-lora-32-v2-915.pdf b/docs/hardware/heltec-wifi-lora-32-v2-915.pdf
deleted file mode 100644
index 11d499e7d..000000000
Binary files a/docs/hardware/heltec-wifi-lora-32-v2-915.pdf and /dev/null differ
diff --git a/docs/hardware/lora-fcc-requirements.pdf b/docs/hardware/lora-fcc-requirements.pdf
deleted file mode 100644
index d1c2beb4f..000000000
Binary files a/docs/hardware/lora-fcc-requirements.pdf and /dev/null differ
diff --git a/docs/hardware/nrf52/nrf52-programming.png b/docs/hardware/nrf52/nrf52-programming.png
deleted file mode 100644
index b99a2691c..000000000
Binary files a/docs/hardware/nrf52/nrf52-programming.png and /dev/null differ
diff --git a/docs/hardware/pe4259ds-rf-switch.pdf b/docs/hardware/pe4259ds-rf-switch.pdf
deleted file mode 100644
index fc6448008..000000000
Binary files a/docs/hardware/pe4259ds-rf-switch.pdf and /dev/null differ
diff --git a/docs/hardware/pinetab/PineTab LoRa schematic.pdf b/docs/hardware/pinetab/PineTab LoRa schematic.pdf
deleted file mode 100644
index 9529a30c8..000000000
Binary files a/docs/hardware/pinetab/PineTab LoRa schematic.pdf and /dev/null differ
diff --git a/docs/hardware/pinetab/SX1302/DS_SX1302_V1.0.pdf b/docs/hardware/pinetab/SX1302/DS_SX1302_V1.0.pdf
deleted file mode 100644
index 875008792..000000000
Binary files a/docs/hardware/pinetab/SX1302/DS_SX1302_V1.0.pdf and /dev/null differ
diff --git a/docs/hardware/pinetab/SX1302/M-GW1302S 用户手册(2)(1)(1).pdf b/docs/hardware/pinetab/SX1302/M-GW1302S 用户手册(2)(1)(1).pdf
deleted file mode 100644
index 9ad7bbb79..000000000
Binary files a/docs/hardware/pinetab/SX1302/M-GW1302S 用户手册(2)(1)(1).pdf and /dev/null differ
diff --git a/docs/hardware/pinetab/SX1302/M-GW1302S(射频版)硬件设计手册_V1.1.pdf b/docs/hardware/pinetab/SX1302/M-GW1302S(射频版)硬件设计手册_V1.1.pdf
deleted file mode 100644
index bdc8bb250..000000000
Binary files a/docs/hardware/pinetab/SX1302/M-GW1302S(射频版)硬件设计手册_V1.1.pdf and /dev/null differ
diff --git a/docs/hardware/pinetab/SX1302/M-GW1302(透传版)_硬件设计手册.pdf b/docs/hardware/pinetab/SX1302/M-GW1302(透传版)_硬件设计手册.pdf
deleted file mode 100644
index 40c23e36c..000000000
Binary files a/docs/hardware/pinetab/SX1302/M-GW1302(透传版)_硬件设计手册.pdf and /dev/null differ
diff --git a/docs/hardware/pinetab/ch341h_datasheet.pdf b/docs/hardware/pinetab/ch341h_datasheet.pdf
deleted file mode 100644
index 4e3bea23e..000000000
--- a/docs/hardware/pinetab/ch341h_datasheet.pdf
+++ /dev/null
@@ -1,990 +0,0 @@
-%PDF-1.6
%
-2 0 obj
<>
endobj
196 0 obj
<>stream
-
-
-
-
- application/pdf
-
-
- Provided By ALLDATASHEET.COM(FREE DATASHEET DOWNLOAD SITE)
-
-
-
-
- DATASHEET SEARCH SITE | WWW.ALLDATASHEET.COM
-
-
-
-
- DATASHEET SEARCH, DATABOOK, COMPONENT, FREE DOWNLOAD SITE
-
-
-
-
- PDF
- DATASHEET
- PDF DATASHEET
- IC
- CHIP
- SEMICONDUCTOR
- TRANSISTOR
- ELECTRONIC COMPONENT
- ISO COMPONENT
- ALLDATASHEET
- DATABOOK
- CATALOG
- ARCHIVE
-
-
-
-
- D:20091209171130+08'00'
- pdfFactory Pro www.fineprint.cn
- pdfFactory Pro 3.16 (Windows XP Professional Chinese)
-
-
- PDF, DATASHEET, PDF DATASHEET, IC, CHIP, SEMICONDUCTOR, TRANSISTOR, ELECTRONIC COMPONENT, ISO COMPONENT, ALLDATASHEET, DATABOOK, CATALOG, ARCHIVE
-
-
- 2019-04-08T11:26:17+09:00
- 2019-04-08T11:26:17+09:00
- 2019-04-08T11:26:17+09:00
-
-
- uuid:04c8c137-1a4e-4765-9839-dd92a8631224
- uuid:c1ff7b8c-1d00-40d0-bd2f-1e0f374798cd
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-endstream
endobj
123 0 obj
<>
endobj
3 0 obj
<>
endobj
124 0 obj
<>
endobj
6 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
14 0 obj
<>/ProcSet[/PDF/Text/ImageC/ImageI]/XObject<>>>/Type/Page>>
endobj
21 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
24 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
27 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
30 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
33 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
36 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
39 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
43 0 obj
<>/ProcSet[/PDF/Text]>>/Type/Page>>
endobj
46 0 obj
<>/ProcSet[/PDF/Text/ImageC/ImageI]/XObject<>>>/Type/Page>>
endobj
54 0 obj
<>/ProcSet[/PDF/Text/ImageC/ImageI]/XObject<>>>/Type/Page>>
endobj
65 0 obj
<>/ProcSet[/PDF/Text/ImageC/ImageI]/XObject<>>>/Type/Page>>
endobj
80 0 obj
<>/ProcSet[/PDF/Text/ImageC/ImageI]/XObject<>>>/Type/Page>>
endobj
78 0 obj
<>stream
-HWMo6W%H}t =h
$Gc7nKIErf(JNܢ+gys88|-XŅd`JpY %Vf%W hWERoQ=`Pn/Tx= *7B05~mOJCYxHQLT_o
-~m?#LчVi-1^]%nn59 Q9 WL*8%mwy~\y][9)(\H_wdoXD/|s-R/!m0t5* sp1$7%jm+hI
-T"S g*lՅ+<<}69P ߓ(AVwFlpu3P Kf
-c¤
-.AdDc5Faf\Q]A
JH G@%PQ yٻb,^*RĖJAQ&%3w%Q0G1o 5J~Rl@VTpiUxeMd?dB%`&
-ZP:;jżi,nEkTe-gYIaASOLYZp sz~ Iuۻ:hvn^妥;@}YάK?pZG\0zI=-_vFly|
-ʯ}%T'8 p5vQ8$eE>A~q
EQ-JH3i&
- ,
Ȃ?<Ç,L=?ҳHsh9q/z\Ca $G˨]#+͆,j(60VF$|@g slT7ukhPMCJe?uʰlNi
6 ʯb!4Gh< r"NVo;++A=LifT#j28Jq %O 90,j!7UKHr40H>M V&"^` O;J1)o:L_Qѳ7$ފpB]`ƄChHjXa(]O0dz>AR1,wk(Gm0J7RqIB[!,2F-|;'h%qi$9^\⣚=q,`aş棈n;>&6RVEkR3`w|lY
-
-D}.T
ˆ}fkC$ǎRKT_1
-b*Д_RqfF,Ct dBWEXLt1XQ
ֆT$nGdSx[r+*^Ikd{mZ
-endstream
endobj
81 0 obj
<>stream
-HW*]
-+>Q4ϥLÃR0E/ e>+L.C.""&xO*v/@kܖm~Jт(#Cvs uk?ơub+oX.{A[^9P(=NyO6Z`Uh? O[j.e1m.~:IQ'_U5