├── .github └── stale.yml ├── .gitignore ├── Examples ├── LoRa-PHY │ ├── LoRaReceiverCallback │ │ └── LoRaReceiverCallback.ino │ ├── LoRaReceiverRAK4260 │ │ └── LoRaReceiverRAK4260.ino │ ├── LoRaReceiverRAK4260_multiple.ino │ │ └── LoRaReceiverRAK4260_multiple.ino.ino │ ├── LoRaSenderRAK4260 │ │ └── LoRaSenderRAK4260.ino │ └── LoRaSenderRAK4260_Multiple │ │ └── LoRaSenderRAK4260_Multiple.ino └── LoRaWAN │ ├── BeelanLoRaWAN_library │ └── send-class-A-ABP │ │ └── send-class-A-ABP.ino │ └── lorawan_sensors │ └── lorawan_sensors.ino ├── Hardware ├── Bast_WAN-cache.lib ├── Bast_WAN-rescue.dcm ├── Bast_WAN-rescue.lib ├── Bast_WAN.bak ├── Bast_WAN.csv ├── Bast_WAN.kicad_pcb ├── Bast_WAN.kicad_prl ├── Bast_WAN.kicad_pro ├── Bast_WAN.kicad_sch ├── Bast_WAN.pdf ├── Bast_WAN.pro ├── Bast_WAN.sch ├── Bast_WAN.xml ├── _autosave-Bast_WAN.sch ├── bast-wan.pretty │ ├── JST_S2B-PH-SM4-TB(LF)(SN).kicad_mod │ ├── RAK4260-footprint_w_solder_paste.kicad_mod │ ├── S2B-PH-SM4-TB_LF__SN_.mod │ ├── SMA_EDGE.kicad_mod │ ├── packages3d │ │ ├── 629105150521 (rev1).stp │ │ ├── Amphenol 132415.STEP │ │ ├── S2B-PH-SM4-TB(LF)(SN)--3DModel-STEP-56544.STEP │ │ └── rak4260-no-copper.step │ └── rak.kicad_mod ├── fp-lib-table └── sym-lib-table ├── LICENSE ├── LICENSE_HARDWARE ├── README.md └── datasheet_bastwan.pdf /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 5 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 3 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - Bug 8 | - Quality 9 | - Feedback 10 | - Libraries 11 | - Feature request 12 | # Label to use when marking an issue as stale 13 | staleLabel: First warning 14 | # Comment to post when marking an issue as stale. Set to `false` to disable 15 | markComment: > 16 | This is a message to remind you that your request has been pending for 5 days and awaits your comments. 17 | 18 | Our agent would like to hear from you about your previous request to see if the difficulty 19 | you were facing has been resolved or if we can provide further assistance. 20 | Otherwise, if we do not hear back from you within the next three days, the issue will be closed. 21 | 22 | Kind regards, 23 | Electronic Cats Support Team 24 | # Comment to post when closing a stale issue. Set to `false` to disable 25 | closeComment: false 26 | # Limit to only `issues` or `pulls` 27 | only: issues 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.kicad_pcb-bak 3 | 4 | Hardware/Gerbers_bastwan_v1/ 5 | 6 | Hardware/Gerbers_bastwan_v1.zip 7 | 8 | *.sch-bak 9 | 10 | Hardware/fp-info-cache 11 | 12 | *.DS_Store 13 | *.zip 14 | -------------------------------------------------------------------------------- /Examples/LoRa-PHY/LoRaReceiverCallback/LoRaReceiverCallback.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | 5 | void setup() { 6 | Serial.begin(9600); 7 | while (!Serial); 8 | Serial.println("LoRa Receiver Callback"); 9 | 10 | LoRa.setPins(SS, RFM_RST, RFM_DIO0); 11 | if (!LoRa.begin(915E6)) { 12 | Serial.println("Starting LoRa failed!"); 13 | while (1); 14 | } 15 | pinMode(RFM_SWITCH,OUTPUT); 16 | // RF switch 1 to Rx 17 | digitalWrite(RFM_SWITCH,1); 18 | // register the receive callback 19 | LoRa.onReceive(onReceive); 20 | 21 | // put the radio into receive mode 22 | LoRa.receive(); 23 | } 24 | 25 | void loop() { 26 | // do nothing 27 | } 28 | 29 | void onReceive(int packetSize) { 30 | // received a packet 31 | Serial.print("Received packet '"); 32 | 33 | // read packet 34 | for (int i = 0; i < packetSize; i++) { 35 | Serial.print((char)LoRa.read()); 36 | } 37 | 38 | // print RSSI of packet 39 | Serial.print("' with RSSI "); 40 | Serial.println(LoRa.packetRssi()); 41 | } 42 | -------------------------------------------------------------------------------- /Examples/LoRa-PHY/LoRaReceiverRAK4260/LoRaReceiverRAK4260.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void setup() { 5 | Serial.begin(9600); 6 | //while (!Serial); 7 | pinMode(RFM_SWITCH,OUTPUT); 8 | // RF switch 1 to Rx 9 | digitalWrite(RFM_SWITCH,1); 10 | Serial.println("LoRa Receiver"); 11 | LoRa.setPins(SS, RFM_RST, RFM_DIO0); 12 | if (!LoRa.begin(915E6)) { 13 | Serial.println("Starting LoRa failed!"); 14 | while (1); 15 | } 16 | } 17 | 18 | void loop() { 19 | // try to parse packet 20 | int packetSize = LoRa.parsePacket(); 21 | if (packetSize) { 22 | // received a packet 23 | Serial.print("Received packet '"); 24 | 25 | // read packet 26 | while (LoRa.available()) { 27 | Serial.print((char)LoRa.read()); 28 | } 29 | 30 | // print RSSI of packet 31 | Serial.print("' with RSSI "); 32 | Serial.println(LoRa.packetRssi()); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Examples/LoRa-PHY/LoRaReceiverRAK4260_multiple.ino/LoRaReceiverRAK4260_multiple.ino.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | uint8_t key_1[3]={0xFF,0xAA,0xBB}; 5 | 6 | uint8_t rxBuffer[3]={0,0,0}; 7 | bool identifier=true; 8 | 9 | void setup() { 10 | Serial.begin(9600); 11 | while (!Serial); 12 | pinMode(RFM_TCX_ON,OUTPUT); 13 | pinMode(RFM_SWITCH,OUTPUT); 14 | pinMode(LED_BUILTIN,OUTPUT); 15 | // RF switch 1 to Rx 16 | digitalWrite(RFM_SWITCH,1); 17 | Serial.println("LoRa Receiver"); 18 | LoRa.setPins(SS, RFM_RST, RFM_DIO0); 19 | if (!LoRa.begin(915E6)) { 20 | Serial.println("Starting LoRa failed!"); 21 | while (1); 22 | } 23 | } 24 | 25 | void loop() { 26 | // try to parse packet 27 | int packetSize = LoRa.parsePacket(); 28 | if (packetSize) { 29 | // received a packet 30 | identifier=true; 31 | Serial.print("Received packet '"); 32 | // read packet 33 | for(int i=0;i 2 | #include 3 | 4 | int counter = 0; 5 | 6 | void setup() { 7 | Serial.begin(9600); 8 | //while (!Serial); 9 | 10 | Serial.println("LoRa Sender"); 11 | pinMode(RFM_TCX_ON,OUTPUT); 12 | pinMode(RFM_SWITCH,OUTPUT); 13 | pinMode(LED_BUILTIN,OUTPUT); 14 | LoRa.setPins(SS,RFM_RST,RFM_DIO0); 15 | if (!LoRa.begin(915E6)) { 16 | Serial.println("Starting LoRa failed!"); 17 | while (1); 18 | } 19 | } 20 | 21 | void loop() { 22 | Serial.print("Sending packet: "); 23 | Serial.println(counter); 24 | digitalWrite(LED_BUILTIN,1); 25 | // send packet 26 | LoRa.beginPacket(); 27 | digitalWrite(RFM_SWITCH,0); 28 | LoRa.print("hello "); 29 | LoRa.print(counter); 30 | LoRa.endPacket(); 31 | 32 | counter++; 33 | delay(500); 34 | digitalWrite(LED_BUILTIN,0); 35 | delay(500); 36 | } 37 | -------------------------------------------------------------------------------- /Examples/LoRa-PHY/LoRaSenderRAK4260_Multiple/LoRaSenderRAK4260_Multiple.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | uint8_t key_1[3]={0xFF,0xAA,0xBB}; 5 | uint8_t key_2[3]={0xAB,0xCD,0xEF}; 6 | 7 | void setup() { 8 | Serial.begin(9600); 9 | //while (!Serial); 10 | 11 | Serial.println("LoRa Sender"); 12 | pinMode(RFM_TCX_ON,OUTPUT); 13 | pinMode(RFM_SWITCH,OUTPUT); 14 | pinMode(LED_BUILTIN,OUTPUT); 15 | digitalWrite(RFM_SWITCH,0); 16 | pinMode(9,INPUT_PULLUP); 17 | pinMode(6,INPUT_PULLUP); 18 | 19 | LoRa.setPins(SS,RFM_RST,RFM_DIO0); 20 | if (!LoRa.begin(915E6)) { 21 | Serial.println("Starting LoRa failed!"); 22 | while (1); 23 | } 24 | } 25 | 26 | void loop() { 27 | if(digitalRead(9)==LOW){ 28 | Serial.println("Turn on LED"); 29 | digitalWrite(LED_BUILTIN,1); 30 | // send packet 31 | LoRa.beginPacket(); 32 | for(int i=0;i // Library Beelan http://librarymanager/All#Beelan 14 | 15 | //ABP Credentials 16 | const char *devAddr = "00000000"; 17 | const char *nwkSKey = "00000000000000000000000000000000"; 18 | const char *appSKey = "00000000000000000000000000000000"; 19 | 20 | const unsigned long interval = 10000; // 10 s interval to send message 21 | unsigned long previousMillis = 0; // will store last time message sent 22 | unsigned int counter = 0; // message counter 23 | 24 | char myStr[50]; 25 | char outStr[255]; 26 | byte recvStatus = 0; 27 | 28 | const sRFM_pins RFM_pins = { 29 | .CS = SS, 30 | .RST = RFM_RST, 31 | .DIO0 = RFM_DIO0, 32 | .DIO1 = RFM_DIO1, 33 | .DIO2 = RFM_DIO2, 34 | .DIO5 = RFM_DIO5, 35 | }; 36 | 37 | void setup() { 38 | // Setup loraid access 39 | Serial.begin(115200); 40 | while(!Serial); 41 | if(!lora.init()){ 42 | Serial.println("RFM95 not detected"); 43 | delay(5000); 44 | return; 45 | } 46 | 47 | pinMode(RFM_TCX_ON,OUTPUT); 48 | pinMode(RFM_SWITCH,OUTPUT); 49 | pinMode(LED_BUILTIN,OUTPUT); 50 | 51 | // Set LoRaWAN Class change CLASS_A or CLASS_C 52 | lora.setDeviceClass(CLASS_A); 53 | 54 | // Set Data Rate 55 | lora.setDataRate(SF8BW125); 56 | 57 | // set channel to random 58 | lora.setChannel(MULTI); 59 | 60 | // Put ABP Key and DevAddress here 61 | lora.setNwkSKey(nwkSKey); 62 | lora.setAppSKey(appSKey); 63 | lora.setDevAddr(devAddr); 64 | } 65 | 66 | void loop() { 67 | // Check interval overflow 68 | if(millis() - previousMillis > interval) { 69 | previousMillis = millis(); 70 | 71 | sprintf(myStr, "Counter-%d", counter); 72 | 73 | Serial.print("Sending: "); 74 | Serial.println(myStr); 75 | 76 | lora.sendUplink(myStr, strlen(myStr), 0,1); 77 | counter++; 78 | } 79 | 80 | recvStatus = lora.readData(outStr); 81 | if(recvStatus) { 82 | Serial.println(outStr); 83 | } 84 | 85 | // Check Lora RX 86 | lora.update(); 87 | } 88 | -------------------------------------------------------------------------------- /Examples/LoRaWAN/lorawan_sensors/lorawan_sensors.ino: -------------------------------------------------------------------------------- 1 | /** 2 | * Example of ABP device sensores Cayenne LPP 3 | * Authors: 4 | * Eduardo Contreras 5 | * June 2019 6 | * 7 | * This code is beerware; if you see me (or any other collaborator 8 | * member) at the local, and you've found our code helpful, 9 | * please buy us a round! 10 | * Distributed as-is; no warranty is given. 11 | */ 12 | #include // Library Beelan http://librarymanager/All#Beelan 13 | #include 14 | 15 | CayenneLPP lpp(51); 16 | 17 | //ABP Credentials 18 | const char *devAddr = "26021F8D"; 19 | const char *nwkSKey = "FF09A493C8F727378B1AE9BD2E4E8DEB"; 20 | const char *appSKey = "4D80957CE75329C25F2F93E8F54DC663"; 21 | 22 | const unsigned long interval = 10000; // 10 s interval to send message 23 | unsigned long previousMillis = 0; // will store last time message sent 24 | unsigned int counter = 0; // message counter 25 | 26 | char myStr[50]; 27 | char outStr[255]; 28 | byte recvStatus = 0; 29 | 30 | const sRFM_pins RFM_pins = { 31 | .CS = SS, 32 | .RST = RFM_RST, 33 | .DIO0 = RFM_DIO0, 34 | .DIO1 = RFM_DIO1, 35 | .DIO2 = RFM_DIO2, 36 | .DIO5 = RFM_DIO5, 37 | }; 38 | 39 | void setup() { 40 | // Setup loraid access 41 | Serial.begin(115200); 42 | delay(2000); 43 | if(!lora.init()){ 44 | Serial.println("RFM95 not detected"); 45 | delay(5000); 46 | return; 47 | } 48 | pinMode(RFM_TCX_ON,OUTPUT); 49 | pinMode(RFM_SWITCH,OUTPUT); 50 | pinMode(LED_BUILTIN,OUTPUT); 51 | 52 | // Set LoRaWAN Class change CLASS_A or CLASS_C 53 | lora.setDeviceClass(CLASS_A); 54 | 55 | // Set Data Rate 56 | lora.setDataRate(SF8BW125); 57 | 58 | // set channel to random 59 | lora.setChannel(MULTI); 60 | 61 | // Put ABP Key and DevAddress here 62 | lora.setNwkSKey(nwkSKey); 63 | lora.setAppSKey(appSKey); 64 | lora.setDevAddr(devAddr); 65 | } 66 | 67 | void loop() { 68 | // Check interval overflow 69 | if(millis() - previousMillis > interval) { 70 | previousMillis = millis(); 71 | 72 | Serial.print("Sending: "); 73 | printVariables(); 74 | 75 | lora.sendUplink((char *)lpp.getBuffer(), lpp.getSize(), 0, 1); 76 | } 77 | 78 | recvStatus = lora.readData(outStr); 79 | if(recvStatus) { 80 | Serial.println("Recived: "); 81 | Serial.println(outStr); 82 | } 83 | 84 | // Check Lora RX 85 | lora.update(); 86 | } 87 | 88 | void printVariables() 89 | { 90 | lpp.reset(); 91 | 92 | int humidity = random(0,300); 93 | Serial.print(F("humidity=")); 94 | Serial.print(humidity, 1); 95 | lpp.addRelativeHumidity(3, humidity); 96 | 97 | int temp = random(0,200); 98 | Serial.print(F(",tempf=")); 99 | Serial.print(temp, 1); 100 | lpp.addTemperature(4, temp); 101 | 102 | int pressure = random(0,2000); 103 | Serial.print(F(",pressure=")); 104 | Serial.print((pressure/100.0), 2); 105 | lpp.addBarometricPressure(7,(pressure/100.0)); 106 | 107 | int batt_lvl = random(0,3.3); 108 | Serial.print(F(",batt_lvl=")); 109 | Serial.print(batt_lvl, 2); 110 | lpp.addAnalogInput(8, batt_lvl); 111 | Serial.println(); 112 | } 113 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN-cache.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # Bast_WAN-rescue_AP2112K-3.3TRG1-electroniccats 5 | # 6 | DEF Bast_WAN-rescue_AP2112K-3.3TRG1-electroniccats U 0 40 Y Y 1 L N 7 | F0 "U" -302 341 50 H V L BNN 8 | F1 "Bast_WAN-rescue_AP2112K-3.3TRG1-electroniccats" -301 -459 50 H V L BNN 9 | F2 "SOT95P285X140-5N" 0 0 50 H I L BNN 10 | F3 "SOT-753 Diodes Inc." 0 0 50 H I L BNN 11 | F4 "0.15 USD" 0 0 50 H I L BNN 12 | F5 "Diodes Inc." 0 0 50 H I L BNN 13 | F6 "AP2112K-3.3TRG1" 0 0 50 H I L BNN 14 | F7 "Good" 0 0 50 H I L BNN 15 | F8 "AP2112 Series 0.6 A 3.3 V Fixed Output SMT LDO Linear Regulator - SOT23-5" 0 0 50 H I L BNN 16 | DRAW 17 | S -300 290 300 -250 0 0 16 f 18 | X VIN 1 -500 200 200 R 40 40 0 0 W 19 | X GND 2 500 -200 200 L 40 40 0 0 W 20 | X EN 3 -500 0 200 R 40 40 0 0 I 21 | X VOUT 5 500 200 200 L 40 40 0 0 W 22 | ENDDRAW 23 | ENDDEF 24 | # 25 | # Bast_WAN-rescue_ATECC608A-SSHDA-Security 26 | # 27 | DEF Bast_WAN-rescue_ATECC608A-SSHDA-Security U 0 20 Y Y 1 F N 28 | F0 "U" 150 250 50 H V C CNN 29 | F1 "Bast_WAN-rescue_ATECC608A-SSHDA-Security" 400 -250 50 H V C CNN 30 | F2 "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" 0 0 50 H I C CNN 31 | F3 "" 150 250 50 H I C CNN 32 | $FPLIST 33 | SOIC*8*3.9x4.9mm*P1.27mm* 34 | $ENDFPLIST 35 | DRAW 36 | S -200 200 200 -200 0 1 10 f 37 | X GND 4 0 -300 100 U 50 50 1 1 W 38 | X SDA 5 300 100 100 L 50 50 1 1 B 39 | X SCL 6 300 -100 100 L 50 50 1 1 I 40 | X VCC 8 0 300 100 D 50 50 1 1 W 41 | ENDDRAW 42 | ENDDEF 43 | # 44 | # Bast_WAN-rescue_DMG2301L-Transistor_FET 45 | # 46 | DEF Bast_WAN-rescue_DMG2301L-Transistor_FET Q 0 0 Y N 1 F N 47 | F0 "Q" 200 75 50 H V L CNN 48 | F1 "Bast_WAN-rescue_DMG2301L-Transistor_FET" 200 0 50 H V L CNN 49 | F2 "Package_TO_SOT_SMD:SOT-23" 200 -75 50 H I L CIN 50 | F3 "" 0 0 50 H I L CNN 51 | $FPLIST 52 | SOT?23* 53 | $ENDFPLIST 54 | DRAW 55 | C 65 0 111 0 1 10 N 56 | C 100 -70 11 0 1 0 F 57 | C 100 70 11 0 1 0 F 58 | P 2 0 1 0 -100 0 10 0 N 59 | P 2 0 1 0 30 -70 100 -70 N 60 | P 2 0 1 10 30 -50 30 -90 N 61 | P 2 0 1 0 30 0 100 0 N 62 | P 2 0 1 10 30 20 30 -20 N 63 | P 2 0 1 0 30 70 100 70 N 64 | P 2 0 1 10 30 90 30 50 N 65 | P 2 0 1 0 100 -70 100 -100 N 66 | P 2 0 1 0 100 -70 100 0 N 67 | P 2 0 1 0 100 100 100 70 N 68 | P 3 0 1 10 10 75 10 -75 10 -75 N 69 | P 4 0 1 0 90 0 50 -15 50 15 90 0 F 70 | P 4 0 1 0 100 -70 130 -70 130 70 100 70 N 71 | P 4 0 1 0 110 -20 115 -15 145 -15 150 -10 N 72 | P 4 0 1 0 130 -15 115 10 145 10 130 -15 N 73 | X G 1 -200 0 100 R 50 50 1 1 I 74 | X S 2 100 -200 100 U 50 50 1 1 P 75 | X D 3 100 200 100 D 50 50 1 1 P 76 | ENDDRAW 77 | ENDDEF 78 | # 79 | # Bast_WAN-rescue_RAK4260-electroniccats 80 | # 81 | DEF Bast_WAN-rescue_RAK4260-electroniccats U 0 40 Y Y 1 F N 82 | F0 "U" 450 250 50 H V C CNN 83 | F1 "Bast_WAN-rescue_RAK4260-electroniccats" -300 250 50 H V C CNN 84 | F2 "" -350 -350 50 H I C CNN 85 | F3 "" -350 -350 50 H I C CNN 86 | DRAW 87 | S -500 200 550 -2350 0 1 0 f 88 | X GND 1 -700 -1100 200 R 50 50 1 1 I 89 | X GND 10 -700 -1300 200 R 50 50 1 1 I 90 | X VCC 11 -700 150 200 R 50 50 1 1 I 91 | X VCC 12 -700 50 200 R 50 50 1 1 I 92 | X SCL 13 750 -1650 200 L 50 50 1 1 I 93 | X SDA 14 750 -1550 200 L 50 50 1 1 I 94 | X PA15 15 750 -1450 200 L 50 50 1 1 I 95 | X PA14 16 750 -1350 200 L 50 50 1 1 I 96 | X GND 17 -700 -1400 200 R 50 50 1 1 I 97 | X GND 18 -700 -1500 200 R 50 50 1 1 I 98 | X PA19 19 750 50 200 L 50 50 1 1 I 99 | X RFC 2 -700 -350 200 R 50 50 1 1 I 100 | X PA18 20 750 -50 200 L 50 50 1 1 I 101 | X PA28 21 750 -150 200 L 50 50 1 1 I 102 | X PA23 22 750 -250 200 L 50 50 1 1 I 103 | X PA22 23 750 -350 200 L 50 50 1 1 I 104 | X PB23 24 750 -1100 200 L 50 50 1 1 I 105 | X PB02 25 750 -900 200 L 50 50 1 1 I 106 | X PA25_USB_P 26 750 -800 200 L 50 50 1 1 I 107 | X PA24_USB_N 27 750 -700 200 L 50 50 1 1 I 108 | X GND 28 -700 -1600 200 R 50 50 1 1 I 109 | X RST 29 -700 -150 200 R 50 50 1 1 I 110 | X GND 3 -700 -1200 200 R 50 50 1 1 I 111 | X PA30 30 750 -1850 200 L 50 50 1 1 I 112 | X PA31 31 750 -1950 200 L 50 50 1 1 I 113 | X PA04 32 750 -2050 200 L 50 50 1 1 I 114 | X PA05 33 750 -2150 200 L 50 50 1 1 I 115 | X PB03 34 750 -1000 200 L 50 50 1 1 I 116 | X GND 35 -700 -1700 200 R 50 50 1 1 I 117 | X GND 36 -700 -1800 200 R 50 50 1 1 I 118 | X GND 37 -700 -1900 200 R 50 50 1 1 I 119 | X GND 38 -700 -2000 200 R 50 50 1 1 I 120 | X GND 39 -700 -2100 200 R 50 50 1 1 I 121 | X PA27 4 -700 -450 200 R 50 50 1 1 I 122 | X GND 40 -700 -2200 200 R 50 50 1 1 I 123 | X PA06 5 -700 -550 200 R 50 50 1 1 I 124 | X PA07 6 -700 -650 200 R 50 50 1 1 I 125 | X AIN0_PA08 7 -700 -750 200 R 50 50 1 1 I 126 | X AIN1_PA09 8 -700 -850 200 R 50 50 1 1 I 127 | X PB22 9 -700 -950 200 R 50 50 1 1 I 128 | ENDDRAW 129 | ENDDEF 130 | # 131 | # Battery_Management_MCP73831-3-OT 132 | # 133 | DEF Battery_Management_MCP73831-3-OT U 0 40 Y Y 1 F N 134 | F0 "U" -300 250 50 H V L CNN 135 | F1 "Battery_Management_MCP73831-3-OT" 50 250 50 H V L CNN 136 | F2 "Package_TO_SOT_SMD:SOT-23-5" 50 -250 50 H I L CIN 137 | F3 "" -150 -50 50 H I C CNN 138 | ALIAS MCP73832-5-OT MCP73832-4-OT MCP73832-3-OT MCP73831-2-OT MCP73831-5-OT MCP73831-4-OT MCP73831-3-OT 139 | $FPLIST 140 | SOT?23* 141 | $ENDFPLIST 142 | DRAW 143 | S -300 200 300 -200 0 1 10 f 144 | X STAT 1 400 -100 100 L 50 50 1 1 O 145 | X VSS 2 0 -300 100 U 50 50 1 1 W 146 | X VBAT 3 400 100 100 L 50 50 1 1 w 147 | X VDD 4 0 300 100 D 50 50 1 1 W 148 | X PROG 5 -400 -100 100 R 50 50 1 1 I 149 | ENDDRAW 150 | ENDDEF 151 | # 152 | # Connector_Conn_01x04_Male 153 | # 154 | DEF Connector_Conn_01x04_Male J 0 40 Y N 1 F N 155 | F0 "J" 0 200 50 H V C CNN 156 | F1 "Connector_Conn_01x04_Male" 0 -300 50 H V C CNN 157 | F2 "" 0 0 50 H I C CNN 158 | F3 "" 0 0 50 H I C CNN 159 | $FPLIST 160 | Connector*:*_1x??_* 161 | $ENDFPLIST 162 | DRAW 163 | S 34 -195 0 -205 1 1 6 F 164 | S 34 -95 0 -105 1 1 6 F 165 | S 34 5 0 -5 1 1 6 F 166 | S 34 105 0 95 1 1 6 F 167 | P 2 1 1 6 50 -200 34 -200 N 168 | P 2 1 1 6 50 -100 34 -100 N 169 | P 2 1 1 6 50 0 34 0 N 170 | P 2 1 1 6 50 100 34 100 N 171 | X Pin_1 1 200 100 150 L 50 50 1 1 P 172 | X Pin_2 2 200 0 150 L 50 50 1 1 P 173 | X Pin_3 3 200 -100 150 L 50 50 1 1 P 174 | X Pin_4 4 200 -200 150 L 50 50 1 1 P 175 | ENDDRAW 176 | ENDDEF 177 | # 178 | # Connector_Generic_Conn_01x12 179 | # 180 | DEF Connector_Generic_Conn_01x12 J 0 40 Y N 1 F N 181 | F0 "J" 0 600 50 H V C CNN 182 | F1 "Connector_Generic_Conn_01x12" 0 -700 50 H V C CNN 183 | F2 "" 0 0 50 H I C CNN 184 | F3 "" 0 0 50 H I C CNN 185 | $FPLIST 186 | Connector*:*_1x??_* 187 | $ENDFPLIST 188 | DRAW 189 | S -50 -595 0 -605 1 1 6 N 190 | S -50 -495 0 -505 1 1 6 N 191 | S -50 -395 0 -405 1 1 6 N 192 | S -50 -295 0 -305 1 1 6 N 193 | S -50 -195 0 -205 1 1 6 N 194 | S -50 -95 0 -105 1 1 6 N 195 | S -50 5 0 -5 1 1 6 N 196 | S -50 105 0 95 1 1 6 N 197 | S -50 205 0 195 1 1 6 N 198 | S -50 305 0 295 1 1 6 N 199 | S -50 405 0 395 1 1 6 N 200 | S -50 505 0 495 1 1 6 N 201 | S -50 550 50 -650 1 1 10 f 202 | X Pin_1 1 -200 500 150 R 50 50 1 1 P 203 | X Pin_10 10 -200 -400 150 R 50 50 1 1 P 204 | X Pin_11 11 -200 -500 150 R 50 50 1 1 P 205 | X Pin_12 12 -200 -600 150 R 50 50 1 1 P 206 | X Pin_2 2 -200 400 150 R 50 50 1 1 P 207 | X Pin_3 3 -200 300 150 R 50 50 1 1 P 208 | X Pin_4 4 -200 200 150 R 50 50 1 1 P 209 | X Pin_5 5 -200 100 150 R 50 50 1 1 P 210 | X Pin_6 6 -200 0 150 R 50 50 1 1 P 211 | X Pin_7 7 -200 -100 150 R 50 50 1 1 P 212 | X Pin_8 8 -200 -200 150 R 50 50 1 1 P 213 | X Pin_9 9 -200 -300 150 R 50 50 1 1 P 214 | ENDDRAW 215 | ENDDEF 216 | # 217 | # Connector_Generic_Conn_01x16 218 | # 219 | DEF Connector_Generic_Conn_01x16 J 0 40 Y N 1 F N 220 | F0 "J" 0 800 50 H V C CNN 221 | F1 "Connector_Generic_Conn_01x16" 0 -900 50 H V C CNN 222 | F2 "" 0 0 50 H I C CNN 223 | F3 "" 0 0 50 H I C CNN 224 | $FPLIST 225 | Connector*:*_1x??_* 226 | $ENDFPLIST 227 | DRAW 228 | S -50 -795 0 -805 1 1 6 N 229 | S -50 -695 0 -705 1 1 6 N 230 | S -50 -595 0 -605 1 1 6 N 231 | S -50 -495 0 -505 1 1 6 N 232 | S -50 -395 0 -405 1 1 6 N 233 | S -50 -295 0 -305 1 1 6 N 234 | S -50 -195 0 -205 1 1 6 N 235 | S -50 -95 0 -105 1 1 6 N 236 | S -50 5 0 -5 1 1 6 N 237 | S -50 105 0 95 1 1 6 N 238 | S -50 205 0 195 1 1 6 N 239 | S -50 305 0 295 1 1 6 N 240 | S -50 405 0 395 1 1 6 N 241 | S -50 505 0 495 1 1 6 N 242 | S -50 605 0 595 1 1 6 N 243 | S -50 705 0 695 1 1 6 N 244 | S -50 750 50 -850 1 1 10 f 245 | X Pin_1 1 -200 700 150 R 50 50 1 1 P 246 | X Pin_10 10 -200 -200 150 R 50 50 1 1 P 247 | X Pin_11 11 -200 -300 150 R 50 50 1 1 P 248 | X Pin_12 12 -200 -400 150 R 50 50 1 1 P 249 | X Pin_13 13 -200 -500 150 R 50 50 1 1 P 250 | X Pin_14 14 -200 -600 150 R 50 50 1 1 P 251 | X Pin_15 15 -200 -700 150 R 50 50 1 1 P 252 | X Pin_16 16 -200 -800 150 R 50 50 1 1 P 253 | X Pin_2 2 -200 600 150 R 50 50 1 1 P 254 | X Pin_3 3 -200 500 150 R 50 50 1 1 P 255 | X Pin_4 4 -200 400 150 R 50 50 1 1 P 256 | X Pin_5 5 -200 300 150 R 50 50 1 1 P 257 | X Pin_6 6 -200 200 150 R 50 50 1 1 P 258 | X Pin_7 7 -200 100 150 R 50 50 1 1 P 259 | X Pin_8 8 -200 0 150 R 50 50 1 1 P 260 | X Pin_9 9 -200 -100 150 R 50 50 1 1 P 261 | ENDDRAW 262 | ENDDEF 263 | # 264 | # Connector_Generic_Conn_02x01 265 | # 266 | DEF Connector_Generic_Conn_02x01 J 0 40 Y N 1 F N 267 | F0 "J" 50 100 50 H V C CNN 268 | F1 "Connector_Generic_Conn_02x01" 50 -100 50 H V C CNN 269 | F2 "" 0 0 50 H I C CNN 270 | F3 "" 0 0 50 H I C CNN 271 | $FPLIST 272 | Connector*:*_2x??_* 273 | $ENDFPLIST 274 | DRAW 275 | S -50 5 0 -5 1 1 6 N 276 | S -50 50 150 -50 1 1 10 f 277 | S 150 5 100 -5 1 1 6 N 278 | X Pin_1 1 -200 0 150 R 50 50 1 1 P 279 | X Pin_2 2 300 0 150 L 50 50 1 1 P 280 | ENDDRAW 281 | ENDDEF 282 | # 283 | # Connector_USB_B_Micro 284 | # 285 | DEF Connector_USB_B_Micro J 0 40 Y Y 1 F N 286 | F0 "J" -200 450 50 H V L CNN 287 | F1 "Connector_USB_B_Micro" -200 350 50 H V L CNN 288 | F2 "" 150 -50 50 H I C CNN 289 | F3 "" 150 -50 50 H I C CNN 290 | ALIAS USB_B_Mini 291 | $FPLIST 292 | USB* 293 | $ENDFPLIST 294 | DRAW 295 | C -150 85 25 0 1 10 F 296 | C -25 135 15 0 1 10 F 297 | S -200 -300 200 300 0 1 10 f 298 | S -5 -300 5 -270 0 1 0 N 299 | S 10 50 -20 20 0 1 10 F 300 | S 200 -205 170 -195 0 1 0 N 301 | S 200 -105 170 -95 0 1 0 N 302 | S 200 -5 170 5 0 1 0 N 303 | S 200 195 170 205 0 1 0 N 304 | P 2 0 1 10 -75 85 25 85 N 305 | P 4 0 1 10 -125 85 -100 85 -50 135 -25 135 N 306 | P 4 0 1 10 -100 85 -75 85 -50 35 0 35 N 307 | P 4 0 1 10 25 110 25 60 75 85 25 110 F 308 | P 5 0 1 0 -170 220 -70 220 -80 190 -160 190 -170 220 F 309 | P 9 0 1 0 -185 230 -185 220 -175 190 -175 180 -65 180 -65 190 -55 220 -55 230 -185 230 N 310 | X VBUS 1 300 200 100 L 50 50 1 1 w 311 | X D- 2 300 -100 100 L 50 50 1 1 P 312 | X D+ 3 300 0 100 L 50 50 1 1 P 313 | X ID 4 300 -200 100 L 50 50 1 1 P 314 | X GND 5 0 -400 100 U 50 50 1 1 w 315 | X Shield 6 -100 -400 100 U 50 50 1 1 P 316 | ENDDRAW 317 | ENDDEF 318 | # 319 | # Device_Antenna_Shield 320 | # 321 | DEF Device_Antenna_Shield AE 0 40 N N 1 F N 322 | F0 "AE" -75 175 50 H V R CNN 323 | F1 "Device_Antenna_Shield" -75 100 50 H V R CNN 324 | F2 "" 0 100 50 H I C CNN 325 | F3 "" 0 100 50 H I C CNN 326 | DRAW 327 | A -1 -73 32 -882 1242 0 1 0 N 0 -105 -20 -45 328 | A 1 -73 32 -918 558 0 1 0 N 0 -105 20 -45 329 | C 30 -75 7 0 1 0 F 330 | P 2 0 1 0 0 -100 0 0 N 331 | P 2 0 1 10 0 200 0 -150 N 332 | P 2 0 1 0 30 -75 100 -75 N 333 | P 2 0 1 0 100 -100 100 -75 N 334 | P 3 0 1 10 50 200 0 0 -50 200 N 335 | X A 1 0 -200 100 U 50 50 1 1 I 336 | X Shield 2 100 -200 100 U 50 50 1 1 I 337 | ENDDRAW 338 | ENDDEF 339 | # 340 | # Device_C_Small 341 | # 342 | DEF Device_C_Small C 0 10 N N 1 F N 343 | F0 "C" 10 70 50 H V L CNN 344 | F1 "Device_C_Small" 10 -80 50 H V L CNN 345 | F2 "" 0 0 50 H I C CNN 346 | F3 "" 0 0 50 H I C CNN 347 | $FPLIST 348 | C_* 349 | $ENDFPLIST 350 | DRAW 351 | P 2 0 1 13 -60 -20 60 -20 N 352 | P 2 0 1 12 -60 20 60 20 N 353 | X ~ 1 0 100 80 D 50 50 1 1 P 354 | X ~ 2 0 -100 80 U 50 50 1 1 P 355 | ENDDRAW 356 | ENDDEF 357 | # 358 | # Device_D_TVS_ALT 359 | # 360 | DEF Device_D_TVS_ALT D 0 40 N N 1 F N 361 | F0 "D" 0 100 50 H V C CNN 362 | F1 "Device_D_TVS_ALT" 0 -100 50 H V C CNN 363 | F2 "" 0 0 50 H I C CNN 364 | F3 "" 0 0 50 H I C CNN 365 | $FPLIST 366 | TO-???* 367 | *_Diode_* 368 | *SingleDiode* 369 | D_* 370 | $ENDFPLIST 371 | DRAW 372 | P 2 0 1 0 50 0 -50 0 N 373 | P 4 0 1 8 -100 -50 0 0 -100 50 -100 -50 F 374 | P 4 0 1 8 20 50 0 50 0 -50 -20 -50 N 375 | P 4 0 1 8 100 50 100 -50 0 0 100 50 F 376 | X A1 1 -150 0 100 R 50 50 1 1 P 377 | X A2 2 150 0 100 L 50 50 1 1 P 378 | ENDDRAW 379 | ENDDEF 380 | # 381 | # Device_LED 382 | # 383 | DEF Device_LED D 0 40 N N 1 F N 384 | F0 "D" 0 100 50 H V C CNN 385 | F1 "Device_LED" 0 -100 50 H V C CNN 386 | F2 "" 0 0 50 H I C CNN 387 | F3 "" 0 0 50 H I C CNN 388 | $FPLIST 389 | LED* 390 | LED_SMD:* 391 | LED_THT:* 392 | $ENDFPLIST 393 | DRAW 394 | P 2 0 1 8 -50 -50 -50 50 N 395 | P 2 0 1 0 -50 0 50 0 N 396 | P 4 0 1 8 50 -50 50 50 -50 0 50 -50 N 397 | P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N 398 | P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N 399 | X K 1 -150 0 100 R 50 50 1 1 P 400 | X A 2 150 0 100 L 50 50 1 1 P 401 | ENDDRAW 402 | ENDDEF 403 | # 404 | # Device_R_Small 405 | # 406 | DEF Device_R_Small R 0 10 N N 1 F N 407 | F0 "R" 30 20 50 H V L CNN 408 | F1 "Device_R_Small" 30 -40 50 H V L CNN 409 | F2 "" 0 0 50 H I C CNN 410 | F3 "" 0 0 50 H I C CNN 411 | $FPLIST 412 | R_* 413 | $ENDFPLIST 414 | DRAW 415 | S -30 70 30 -70 0 1 8 N 416 | X ~ 1 0 100 30 D 50 50 1 1 P 417 | X ~ 2 0 -100 30 U 50 50 1 1 P 418 | ENDDRAW 419 | ENDDEF 420 | # 421 | # Diode_MBR340 422 | # 423 | DEF Diode_MBR340 D 0 40 N N 1 F N 424 | F0 "D" 0 100 50 H V C CNN 425 | F1 "Diode_MBR340" 0 -100 50 H V C CNN 426 | F2 "Diode_THT:D_DO-201AD_P15.24mm_Horizontal" 0 -175 50 H I C CNN 427 | F3 "" 0 0 50 H I C CNN 428 | ALIAS 1N5821 1N5822 MBR340 429 | $FPLIST 430 | D*DO?201AD* 431 | $ENDFPLIST 432 | DRAW 433 | P 2 0 1 0 50 0 -50 0 N 434 | P 4 0 1 8 50 50 50 -50 -50 0 50 50 N 435 | P 6 0 1 8 -75 25 -75 50 -50 50 -50 -50 -25 -50 -25 -25 N 436 | X K 1 -150 0 100 R 50 50 1 1 P 437 | X A 2 150 0 100 L 50 50 1 1 P 438 | ENDDRAW 439 | ENDDEF 440 | # 441 | # Switch_SW_Push 442 | # 443 | DEF Switch_SW_Push SW 0 40 N N 1 F N 444 | F0 "SW" 50 100 50 H V L CNN 445 | F1 "Switch_SW_Push" 0 -60 50 H V C CNN 446 | F2 "" 0 200 50 H I C CNN 447 | F3 "" 0 200 50 H I C CNN 448 | DRAW 449 | C -80 0 20 0 1 0 N 450 | C 80 0 20 0 1 0 N 451 | P 2 0 1 0 0 50 0 120 N 452 | P 2 0 1 0 100 50 -100 50 N 453 | X 1 1 -200 0 100 R 50 50 0 1 P 454 | X 2 2 200 0 100 L 50 50 0 1 P 455 | ENDDRAW 456 | ENDDEF 457 | # 458 | # power_+3.3V 459 | # 460 | DEF power_+3.3V #PWR 0 0 Y Y 1 F P 461 | F0 "#PWR" 0 -150 50 H I C CNN 462 | F1 "power_+3.3V" 0 140 50 H V C CNN 463 | F2 "" 0 0 50 H I C CNN 464 | F3 "" 0 0 50 H I C CNN 465 | DRAW 466 | P 2 0 1 0 -30 50 0 100 N 467 | P 2 0 1 0 0 0 0 100 N 468 | P 2 0 1 0 0 100 30 50 N 469 | X +3V3 1 0 0 0 U 50 50 1 1 W N 470 | ENDDRAW 471 | ENDDEF 472 | # 473 | # power_+3V3 474 | # 475 | DEF power_+3V3 #PWR 0 0 Y Y 1 F P 476 | F0 "#PWR" 0 -150 50 H I C CNN 477 | F1 "power_+3V3" 0 140 50 H V C CNN 478 | F2 "" 0 0 50 H I C CNN 479 | F3 "" 0 0 50 H I C CNN 480 | ALIAS +3.3V 481 | DRAW 482 | P 2 0 1 0 -30 50 0 100 N 483 | P 2 0 1 0 0 0 0 100 N 484 | P 2 0 1 0 0 100 30 50 N 485 | X +3V3 1 0 0 0 U 50 50 1 1 W N 486 | ENDDRAW 487 | ENDDEF 488 | # 489 | # power_+BATT 490 | # 491 | DEF power_+BATT #PWR 0 0 Y Y 1 F P 492 | F0 "#PWR" 0 -150 50 H I C CNN 493 | F1 "power_+BATT" 0 140 50 H V C CNN 494 | F2 "" 0 0 50 H I C CNN 495 | F3 "" 0 0 50 H I C CNN 496 | DRAW 497 | P 2 0 1 0 -30 50 0 100 N 498 | P 2 0 1 0 0 0 0 100 N 499 | P 2 0 1 0 0 100 30 50 N 500 | X +BATT 1 0 0 0 U 50 50 1 1 W N 501 | ENDDRAW 502 | ENDDEF 503 | # 504 | # power_GND 505 | # 506 | DEF power_GND #PWR 0 0 Y Y 1 F P 507 | F0 "#PWR" 0 -250 50 H I C CNN 508 | F1 "power_GND" 0 -150 50 H V C CNN 509 | F2 "" 0 0 50 H I C CNN 510 | F3 "" 0 0 50 H I C CNN 511 | DRAW 512 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 513 | X GND 1 0 0 0 D 50 50 1 1 W N 514 | ENDDRAW 515 | ENDDEF 516 | # 517 | # power_VBUS 518 | # 519 | DEF power_VBUS #PWR 0 0 Y Y 1 F P 520 | F0 "#PWR" 0 -150 50 H I C CNN 521 | F1 "power_VBUS" 0 150 50 H V C CNN 522 | F2 "" 0 0 50 H I C CNN 523 | F3 "" 0 0 50 H I C CNN 524 | DRAW 525 | P 2 0 1 0 -30 50 0 100 N 526 | P 2 0 1 0 0 0 0 100 N 527 | P 2 0 1 0 0 100 30 50 N 528 | X VBUS 1 0 0 0 U 50 50 1 1 W N 529 | ENDDRAW 530 | ENDDEF 531 | # 532 | #End Library 533 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN-rescue.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # AP2112K-3.3TRG1-electroniccats 5 | # 6 | DEF AP2112K-3.3TRG1-electroniccats U 0 40 Y Y 1 L N 7 | F0 "U" -302 341 50 H V L BNN 8 | F1 "AP2112K-3.3TRG1-electroniccats" -301 -459 50 H V L BNN 9 | F2 "SOT95P285X140-5N" 0 0 50 H I L BNN 10 | F3 "SOT-753 Diodes Inc." 0 0 50 H I L BNN 11 | F4 "0.15 USD" 0 0 50 H I L BNN 12 | F5 "Diodes Inc." 0 0 50 H I L BNN 13 | F6 "AP2112K-3.3TRG1" 0 0 50 H I L BNN 14 | F7 "Good" 0 0 50 H I L BNN 15 | F8 "AP2112 Series 0.6 A 3.3 V Fixed Output SMT LDO Linear Regulator - SOT23-5" 0 0 50 H I L BNN 16 | DRAW 17 | S -300 290 300 -250 0 0 16 f 18 | X VIN 1 -500 200 200 R 40 40 0 0 W 19 | X GND 2 500 -200 200 L 40 40 0 0 W 20 | X EN 3 -500 0 200 R 40 40 0 0 I 21 | X VOUT 5 500 200 200 L 40 40 0 0 W 22 | ENDDRAW 23 | ENDDEF 24 | # 25 | # ATECC608A-SSHDA-Security 26 | # 27 | DEF ATECC608A-SSHDA-Security U 0 20 Y Y 1 F N 28 | F0 "U" 150 250 50 H V C CNN 29 | F1 "ATECC608A-SSHDA-Security" 400 -250 50 H V C CNN 30 | F2 "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" 0 0 50 H I C CNN 31 | F3 "" 150 250 50 H I C CNN 32 | $FPLIST 33 | SOIC*8*3.9x4.9mm*P1.27mm* 34 | $ENDFPLIST 35 | DRAW 36 | S -200 200 200 -200 0 1 10 f 37 | X GND 4 0 -300 100 U 50 50 1 1 W 38 | X SDA 5 300 100 100 L 50 50 1 1 B 39 | X SCL 6 300 -100 100 L 50 50 1 1 I 40 | X VCC 8 0 300 100 D 50 50 1 1 W 41 | ENDDRAW 42 | ENDDEF 43 | # 44 | # DMG2301L-Transistor_FET 45 | # 46 | DEF DMG2301L-Transistor_FET Q 0 0 Y N 1 F N 47 | F0 "Q" 200 75 50 H V L CNN 48 | F1 "DMG2301L-Transistor_FET" 200 0 50 H V L CNN 49 | F2 "Package_TO_SOT_SMD:SOT-23" 200 -75 50 H I L CIN 50 | F3 "" 0 0 50 H I L CNN 51 | $FPLIST 52 | SOT?23* 53 | $ENDFPLIST 54 | DRAW 55 | C 65 0 111 0 1 10 N 56 | C 100 -70 11 0 1 0 F 57 | C 100 70 11 0 1 0 F 58 | P 2 0 1 0 -100 0 10 0 N 59 | P 2 0 1 0 30 -70 100 -70 N 60 | P 2 0 1 10 30 -50 30 -90 N 61 | P 2 0 1 0 30 0 100 0 N 62 | P 2 0 1 10 30 20 30 -20 N 63 | P 2 0 1 0 30 70 100 70 N 64 | P 2 0 1 10 30 90 30 50 N 65 | P 2 0 1 0 100 -70 100 -100 N 66 | P 2 0 1 0 100 -70 100 0 N 67 | P 2 0 1 0 100 100 100 70 N 68 | P 3 0 1 10 10 75 10 -75 10 -75 N 69 | P 4 0 1 0 90 0 50 -15 50 15 90 0 F 70 | P 4 0 1 0 100 -70 130 -70 130 70 100 70 N 71 | P 4 0 1 0 110 -20 115 -15 145 -15 150 -10 N 72 | P 4 0 1 0 130 -15 115 10 145 10 130 -15 N 73 | X G 1 -200 0 100 R 50 50 1 1 I 74 | X S 2 100 -200 100 U 50 50 1 1 P 75 | X D 3 100 200 100 D 50 50 1 1 P 76 | ENDDRAW 77 | ENDDEF 78 | # 79 | # RAK4260-electroniccats 80 | # 81 | DEF RAK4260-electroniccats U 0 40 Y Y 1 F N 82 | F0 "U" 450 250 50 H V C CNN 83 | F1 "RAK4260-electroniccats" -300 250 50 H V C CNN 84 | F2 "" -350 -350 50 H I C CNN 85 | F3 "" -350 -350 50 H I C CNN 86 | DRAW 87 | S -500 200 550 -2350 0 1 0 f 88 | X GND 1 -700 -1100 200 R 50 50 1 1 I 89 | X GND 10 -700 -1300 200 R 50 50 1 1 I 90 | X VCC 11 -700 150 200 R 50 50 1 1 I 91 | X VCC 12 -700 50 200 R 50 50 1 1 I 92 | X SCL 13 750 -1650 200 L 50 50 1 1 I 93 | X SDA 14 750 -1550 200 L 50 50 1 1 I 94 | X PA15 15 750 -1450 200 L 50 50 1 1 I 95 | X PA14 16 750 -1350 200 L 50 50 1 1 I 96 | X GND 17 -700 -1400 200 R 50 50 1 1 I 97 | X GND 18 -700 -1500 200 R 50 50 1 1 I 98 | X PA19 19 750 50 200 L 50 50 1 1 I 99 | X RFC 2 -700 -350 200 R 50 50 1 1 I 100 | X PA18 20 750 -50 200 L 50 50 1 1 I 101 | X PA28 21 750 -150 200 L 50 50 1 1 I 102 | X PA23 22 750 -250 200 L 50 50 1 1 I 103 | X PA22 23 750 -350 200 L 50 50 1 1 I 104 | X PB23 24 750 -1100 200 L 50 50 1 1 I 105 | X PB02 25 750 -900 200 L 50 50 1 1 I 106 | X PA25_USB_P 26 750 -800 200 L 50 50 1 1 I 107 | X PA24_USB_N 27 750 -700 200 L 50 50 1 1 I 108 | X GND 28 -700 -1600 200 R 50 50 1 1 I 109 | X RST 29 -700 -150 200 R 50 50 1 1 I 110 | X GND 3 -700 -1200 200 R 50 50 1 1 I 111 | X PA30 30 750 -1850 200 L 50 50 1 1 I 112 | X PA31 31 750 -1950 200 L 50 50 1 1 I 113 | X PA04 32 750 -2050 200 L 50 50 1 1 I 114 | X PA05 33 750 -2150 200 L 50 50 1 1 I 115 | X PB03 34 750 -1000 200 L 50 50 1 1 I 116 | X GND 35 -700 -1700 200 R 50 50 1 1 I 117 | X GND 36 -700 -1800 200 R 50 50 1 1 I 118 | X GND 37 -700 -1900 200 R 50 50 1 1 I 119 | X GND 38 -700 -2000 200 R 50 50 1 1 I 120 | X GND 39 -700 -2100 200 R 50 50 1 1 I 121 | X PA27 4 -700 -450 200 R 50 50 1 1 I 122 | X GND 40 -700 -2200 200 R 50 50 1 1 I 123 | X PA06 5 -700 -550 200 R 50 50 1 1 I 124 | X PA07 6 -700 -650 200 R 50 50 1 1 I 125 | X AIN0_PA08 7 -700 -750 200 R 50 50 1 1 I 126 | X AIN1_PA09 8 -700 -850 200 R 50 50 1 1 I 127 | X PB22 9 -700 -950 200 R 50 50 1 1 I 128 | ENDDRAW 129 | ENDDEF 130 | # 131 | # W25Q32JVSS-Memory_Flash 132 | # 133 | DEF W25Q32JVSS-Memory_Flash U 0 20 Y Y 1 F N 134 | F0 "U" -350 350 50 H V C CNN 135 | F1 "W25Q32JVSS-Memory_Flash" 300 350 50 H V C CNN 136 | F2 "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" 0 0 50 H I C CNN 137 | F3 "" 0 0 50 H I C CNN 138 | $FPLIST 139 | SOIC*5.23x5.23mm*P1.27mm* 140 | $ENDFPLIST 141 | DRAW 142 | S -400 300 400 -300 0 1 10 f 143 | X ~CS 1 -500 100 100 R 50 50 1 1 I 144 | X DO(IO1) 2 500 100 100 L 50 50 1 1 B 145 | X IO2 3 500 -100 100 L 50 50 1 1 B 146 | X GND 4 0 -400 100 U 50 50 1 1 W 147 | X DI(IO0) 5 500 200 100 L 50 50 1 1 B 148 | X CLK 6 -500 -100 100 R 50 50 1 1 I 149 | X IO3 7 500 -200 100 L 50 50 1 1 B 150 | X VCC 8 0 400 100 D 50 50 1 1 W 151 | ENDDRAW 152 | ENDDEF 153 | # 154 | #End Library 155 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN.bak: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | LIBS:Bast_WAN-cache 3 | EELAYER 29 0 4 | EELAYER END 5 | $Descr A4 11693 8268 6 | encoding utf-8 7 | Sheet 1 1 8 | Title "Bast WAN" 9 | Date "2019-11-06" 10 | Rev "1.1" 11 | Comp "Electronic Cats" 12 | Comment1 "" 13 | Comment2 "" 14 | Comment3 "Eduardo Contreras" 15 | Comment4 "Andres Sabas" 16 | $EndDescr 17 | $Comp 18 | L Connector:USB_B_Micro J1 19 | U 1 1 5D4D715B 20 | P 1140 1300 21 | F 0 "J1" H 1140 1650 50 0000 C CNN 22 | F 1 "USB_B_Micro" V 890 1300 50 0000 C CNN 23 | F 2 "Connectors:629105150521" H 1290 1250 50 0001 C CNN 24 | F 3 "~" H 1290 1250 50 0001 C CNN 25 | F 4 "629105150521" H 0 0 50 0001 C CNN "manf#" 26 | 1 1140 1300 27 | 1 0 0 -1 28 | $EndComp 29 | $Comp 30 | L power:GND #PWR023 31 | U 1 1 5D4DC006 32 | P 4075 4790 33 | F 0 "#PWR023" H 4075 4540 50 0001 C CNN 34 | F 1 "GND" H 4075 4640 50 0000 C CNN 35 | F 2 "" H 4075 4790 50 0001 C CNN 36 | F 3 "" H 4075 4790 50 0001 C CNN 37 | 1 4075 4790 38 | 1 0 0 -1 39 | $EndComp 40 | $Comp 41 | L power:+BATT #PWR016 42 | U 1 1 5D4DC4E8 43 | P 4075 4190 44 | F 0 "#PWR016" H 4075 4040 50 0001 C CNN 45 | F 1 "+BATT" H 4075 4340 50 0000 C CNN 46 | F 2 "" H 4075 4190 50 0001 C CNN 47 | F 3 "" H 4075 4190 50 0001 C CNN 48 | 1 4075 4190 49 | 1 0 0 -1 50 | $EndComp 51 | Wire Wire Line 52 | 4075 4740 4075 4790 53 | Wire Wire Line 54 | 4075 4240 4075 4190 55 | $Comp 56 | L Connector_Generic:Conn_01x12 J2 57 | U 1 1 5D4E69E8 58 | P 3935 1795 59 | F 0 "J2" H 3935 2395 50 0000 C CNN 60 | F 1 "Conn_Right" V 4035 1595 50 0000 C CNN 61 | F 2 "Connector_PinSocket_2.54mm:PinSocket_1x12_P2.54mm_Vertical" H 3935 1795 50 0001 C CNN 62 | F 3 "~" H 3935 1795 50 0001 C CNN 63 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 64 | 1 3935 1795 65 | -1 0 0 -1 66 | $EndComp 67 | $Comp 68 | L Connector_Generic:Conn_01x16 J3 69 | U 1 1 5D4E7BAF 70 | P 3285 1995 71 | F 0 "J3" H 3285 2795 50 0000 C CNN 72 | F 1 "Conn_Left" V 3385 1995 50 0000 C CNN 73 | F 2 "Connector_PinSocket_2.54mm:PinSocket_1x16_P2.54mm_Vertical" H 3285 1995 50 0001 C CNN 74 | F 3 "~" H 3285 1995 50 0001 C CNN 75 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 76 | 1 3285 1995 77 | 1 0 0 -1 78 | $EndComp 79 | Wire Wire Line 80 | 3085 1295 2985 1295 81 | Wire Wire Line 82 | 3085 1395 3035 1395 83 | Wire Wire Line 84 | 3085 1495 2985 1495 85 | Wire Wire Line 86 | 3085 1695 2985 1695 87 | Wire Wire Line 88 | 3085 1795 2985 1795 89 | Wire Wire Line 90 | 3085 1895 2985 1895 91 | Wire Wire Line 92 | 3085 1995 2985 1995 93 | Wire Wire Line 94 | 3085 2095 2985 2095 95 | Wire Wire Line 96 | 3085 2195 2985 2195 97 | Wire Wire Line 98 | 3085 2295 2985 2295 99 | Wire Wire Line 100 | 3085 2395 2985 2395 101 | Wire Wire Line 102 | 3085 2495 2985 2495 103 | Wire Wire Line 104 | 3085 2595 2985 2595 105 | Wire Wire Line 106 | 3085 2695 2985 2695 107 | Wire Wire Line 108 | 4135 1295 4185 1295 109 | Text Label 2985 1295 2 50 ~ 0 110 | RST 111 | Text Label 2985 1695 2 50 ~ 0 112 | A0 113 | Text Label 2985 1795 2 50 ~ 0 114 | A1 115 | Text Label 2985 1895 2 50 ~ 0 116 | A2 117 | Text Label 2985 1995 2 50 ~ 0 118 | A3 119 | Text Label 2985 2095 2 50 ~ 0 120 | A4 121 | Text Label 2985 2295 2 50 ~ 0 122 | SCK 123 | Text Label 2985 2395 2 50 ~ 0 124 | MOSI 125 | Text Label 2985 2495 2 50 ~ 0 126 | MISO 127 | Text Label 2985 2595 2 50 ~ 0 128 | RX 129 | Text Label 2985 2695 2 50 ~ 0 130 | TX 131 | $Comp 132 | L power:+BATT #PWR04 133 | U 1 1 5D53E0CA 134 | P 4185 1245 135 | F 0 "#PWR04" H 4185 1095 50 0001 C CNN 136 | F 1 "+BATT" H 4185 1395 50 0000 C CNN 137 | F 2 "" H 4185 1245 50 0001 C CNN 138 | F 3 "" H 4185 1245 50 0001 C CNN 139 | 1 4185 1245 140 | 1 0 0 -1 141 | $EndComp 142 | $Comp 143 | L power:VBUS #PWR05 144 | U 1 1 5D53E609 145 | P 4435 1245 146 | F 0 "#PWR05" H 4435 1095 50 0001 C CNN 147 | F 1 "VBUS" H 4435 1395 50 0000 C CNN 148 | F 2 "" H 4435 1245 50 0001 C CNN 149 | F 3 "" H 4435 1245 50 0001 C CNN 150 | 1 4435 1245 151 | 1 0 0 -1 152 | $EndComp 153 | Wire Wire Line 154 | 1440 1100 1490 1100 155 | Wire Wire Line 156 | 1490 1100 1490 1050 157 | Wire Wire Line 158 | 1140 1700 1140 1750 159 | Wire Wire Line 160 | 1140 1750 1090 1750 161 | Wire Wire Line 162 | 1040 1750 1040 1700 163 | Wire Wire Line 164 | 1090 1750 1090 1800 165 | Connection ~ 1090 1750 166 | Wire Wire Line 167 | 1090 1750 1040 1750 168 | $Comp 169 | L power:GND #PWR09 170 | U 1 1 5D54094A 171 | P 1090 1800 172 | F 0 "#PWR09" H 1090 1550 50 0001 C CNN 173 | F 1 "GND" H 1090 1650 50 0000 C CNN 174 | F 2 "" H 1090 1800 50 0001 C CNN 175 | F 3 "" H 1090 1800 50 0001 C CNN 176 | 1 1090 1800 177 | 1 0 0 -1 178 | $EndComp 179 | $Comp 180 | L power:+3.3V #PWR03 181 | U 1 1 5D541790 182 | P 3035 1195 183 | F 0 "#PWR03" H 3035 1045 50 0001 C CNN 184 | F 1 "+3.3V" H 3035 1345 50 0000 C CNN 185 | F 2 "" H 3035 1195 50 0001 C CNN 186 | F 3 "" H 3035 1195 50 0001 C CNN 187 | 1 3035 1195 188 | 1 0 0 -1 189 | $EndComp 190 | $Comp 191 | L power:GND #PWR08 192 | U 1 1 5D545285 193 | P 2745 1605 194 | F 0 "#PWR08" H 2745 1355 50 0001 C CNN 195 | F 1 "GND" H 2745 1455 50 0000 C CNN 196 | F 2 "" H 2745 1605 50 0001 C CNN 197 | F 3 "" H 2745 1605 50 0001 C CNN 198 | 1 2745 1605 199 | 1 0 0 -1 200 | $EndComp 201 | Wire Wire Line 202 | 3035 1195 3035 1395 203 | Wire Wire Line 204 | 4185 1295 4185 1245 205 | Wire Wire Line 206 | 4435 1245 4435 1495 207 | Wire Wire Line 208 | 4135 1495 4435 1495 209 | Text Label 4185 2195 0 50 ~ 0 210 | D5 211 | Text Label 4185 2095 0 50 ~ 0 212 | D6 213 | Text Label 4185 1995 0 50 ~ 0 214 | D9 215 | Text Label 4185 1895 0 50 ~ 0 216 | D10 217 | Text Label 4185 1795 0 50 ~ 0 218 | D11 219 | Text Label 4185 1695 0 50 ~ 0 220 | D12 221 | Text Label 4185 1595 0 50 ~ 0 222 | D13 223 | Text Label 4185 2295 0 50 ~ 0 224 | SCL 225 | Text Label 4185 2395 0 50 ~ 0 226 | SDA 227 | Wire Wire Line 228 | 4135 2395 4185 2395 229 | Wire Wire Line 230 | 4135 2295 4185 2295 231 | Wire Wire Line 232 | 4135 2195 4185 2195 233 | Wire Wire Line 234 | 4135 2095 4185 2095 235 | Wire Wire Line 236 | 4135 1995 4185 1995 237 | Wire Wire Line 238 | 4135 1895 4185 1895 239 | Wire Wire Line 240 | 4135 1795 4185 1795 241 | Wire Wire Line 242 | 4135 1695 4185 1695 243 | Wire Wire Line 244 | 4135 1595 4185 1595 245 | Wire Wire Line 246 | 4135 1395 4185 1395 247 | Text Label 4185 1395 0 50 ~ 0 248 | EN 249 | $Comp 250 | L Connector_Generic:Conn_02x01 J4 251 | U 1 1 5D4DC9A5 252 | P 4075 4540 253 | F 0 "J4" V 4225 4640 50 0000 L CNN 254 | F 1 "Conn_Battery" H 4125 4440 50 0000 C CNN 255 | F 2 "Connector_JST:JST_PH_B2B-PH-SM4-TB_1x02-1MP_P2.00mm_Vertical" H 4075 4540 50 0001 C CNN 256 | F 3 "~" H 4075 4540 50 0001 C CNN 257 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 258 | 1 4075 4540 259 | 0 -1 -1 0 260 | $EndComp 261 | $Comp 262 | L Bast_WAN-rescue:RAK4260-electroniccats U1 263 | U 1 1 5DC2C674 264 | P 8905 1150 265 | F 0 "U1" H 8930 1525 50 0000 C CNN 266 | F 1 "RAK4260" H 8930 1434 50 0000 C CNN 267 | F 2 "bast-wan:RAK4260-footprint_w_solder_paste" H 8555 800 50 0001 C CNN 268 | F 3 "" H 8555 800 50 0001 C CNN 269 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 270 | 1 8905 1150 271 | 1 0 0 -1 272 | $EndComp 273 | Wire Wire Line 274 | 8205 1000 8070 1000 275 | Wire Wire Line 276 | 8070 1000 8070 955 277 | Wire Wire Line 278 | 8205 1100 8070 1100 279 | Wire Wire Line 280 | 8070 1100 8070 1000 281 | Connection ~ 8070 1000 282 | Wire Wire Line 283 | 8205 1300 8130 1300 284 | Wire Wire Line 285 | 9655 1850 9790 1850 286 | Wire Wire Line 287 | 9655 1950 9790 1950 288 | Text Label 9790 1950 0 50 ~ 0 289 | D+ 290 | Text Label 9790 1850 0 50 ~ 0 291 | D- 292 | Wire Wire Line 293 | 8205 2250 8060 2250 294 | Wire Wire Line 295 | 8060 2250 8060 2350 296 | Wire Wire Line 297 | 8205 2350 8060 2350 298 | Connection ~ 8060 2350 299 | Wire Wire Line 300 | 8060 2350 8060 2450 301 | Wire Wire Line 302 | 8205 2450 8060 2450 303 | Connection ~ 8060 2450 304 | Wire Wire Line 305 | 8060 2450 8060 2550 306 | Wire Wire Line 307 | 8205 2550 8060 2550 308 | Connection ~ 8060 2550 309 | Wire Wire Line 310 | 8060 2550 8060 2650 311 | Wire Wire Line 312 | 8205 2650 8060 2650 313 | Connection ~ 8060 2650 314 | Wire Wire Line 315 | 8060 2650 8060 2750 316 | Wire Wire Line 317 | 8205 2750 8060 2750 318 | Connection ~ 8060 2750 319 | Wire Wire Line 320 | 8060 2750 8060 2850 321 | Wire Wire Line 322 | 8205 2850 8060 2850 323 | Connection ~ 8060 2850 324 | Wire Wire Line 325 | 8060 2850 8060 2950 326 | Wire Wire Line 327 | 8205 2950 8060 2950 328 | Connection ~ 8060 2950 329 | Wire Wire Line 330 | 8060 2950 8060 3050 331 | Wire Wire Line 332 | 8205 3050 8060 3050 333 | Connection ~ 8060 3050 334 | Wire Wire Line 335 | 8060 3050 8060 3150 336 | Wire Wire Line 337 | 8205 3150 8060 3150 338 | Connection ~ 8060 3150 339 | Wire Wire Line 340 | 8060 3150 8060 3250 341 | Wire Wire Line 342 | 8205 3250 8060 3250 343 | Connection ~ 8060 3250 344 | Wire Wire Line 345 | 8060 3250 8060 3350 346 | Wire Wire Line 347 | 8205 3350 8060 3350 348 | Connection ~ 8060 3350 349 | Wire Wire Line 350 | 8060 3350 8060 3555 351 | $Comp 352 | L power:GND #PWR012 353 | U 1 1 5DC3EA54 354 | P 8060 3555 355 | F 0 "#PWR012" H 8060 3305 50 0001 C CNN 356 | F 1 "GND" H 8065 3382 50 0000 C CNN 357 | F 2 "" H 8060 3555 50 0001 C CNN 358 | F 3 "" H 8060 3555 50 0001 C CNN 359 | 1 8060 3555 360 | 1 0 0 -1 361 | $EndComp 362 | $Comp 363 | L power:+3V3 #PWR01 364 | U 1 1 5DC3F49A 365 | P 8070 955 366 | F 0 "#PWR01" H 8070 805 50 0001 C CNN 367 | F 1 "+3V3" H 8085 1128 50 0000 C CNN 368 | F 2 "" H 8070 955 50 0001 C CNN 369 | F 3 "" H 8070 955 50 0001 C CNN 370 | 1 8070 955 371 | 1 0 0 -1 372 | $EndComp 373 | Text Label 8130 1300 2 50 ~ 0 374 | RST 375 | Text Label 9760 2800 0 50 ~ 0 376 | SCL 377 | Text Label 9760 2700 0 50 ~ 0 378 | SDA 379 | Wire Wire Line 380 | 9655 2700 9760 2700 381 | Wire Wire Line 382 | 9655 2800 9760 2800 383 | Wire Wire Line 384 | 9655 3000 9765 3000 385 | Wire Wire Line 386 | 9655 3100 9765 3100 387 | Wire Wire Line 388 | 9655 3200 9770 3200 389 | Wire Wire Line 390 | 9655 3300 9775 3300 391 | Wire Wire Line 392 | 8205 1900 8080 1900 393 | Wire Wire Line 394 | 8205 2000 8080 2000 395 | Text Label 9765 1200 0 50 ~ 0 396 | TX 397 | Text Label 9765 1100 0 50 ~ 0 398 | RX 399 | Text Label 9765 3000 0 50 ~ 0 400 | SWCLK 401 | Text Label 9765 3100 0 50 ~ 0 402 | SWDIO 403 | Text Label 9780 2050 0 50 ~ 0 404 | MISO 405 | Text Label 9775 2150 0 50 ~ 0 406 | A5_AREF 407 | Text Label 9775 1400 0 50 ~ 0 408 | MOSI 409 | Wire Wire Line 410 | 9655 2050 9780 2050 411 | Wire Wire Line 412 | 9655 2250 9780 2250 413 | Wire Wire Line 414 | 9655 1500 9775 1500 415 | Wire Wire Line 416 | 9655 1400 9775 1400 417 | Text Label 8080 2000 0 50 ~ 0 418 | A0 419 | Text Label 8080 1900 0 50 ~ 0 420 | A1 421 | Wire Wire Line 422 | 8205 1700 8085 1700 423 | Wire Wire Line 424 | 8205 1800 8080 1800 425 | Text Label 8085 1700 0 50 ~ 0 426 | A3 427 | Text Label 8080 1800 0 50 ~ 0 428 | A2 429 | Text Label 9770 3200 0 50 ~ 0 430 | A4 431 | Text Label 8085 1600 0 50 ~ 0 432 | D5 433 | Text Label 8090 2100 0 50 ~ 0 434 | D6 435 | Text Label 9750 2600 0 50 ~ 0 436 | D9 437 | Text Label 9745 2500 0 50 ~ 0 438 | D10 439 | Text Label 9775 3300 0 50 ~ 0 440 | D11 441 | Text Label 9770 1300 0 50 ~ 0 442 | D12 443 | Text Label 9775 1500 0 50 ~ 0 444 | D13 445 | Wire Wire Line 446 | 8205 1600 8085 1600 447 | Wire Wire Line 448 | 9655 2150 9775 2150 449 | Wire Wire Line 450 | 9655 1300 9770 1300 451 | Wire Wire Line 452 | 9655 1200 9765 1200 453 | Wire Wire Line 454 | 9655 1100 9765 1100 455 | Wire Wire Line 456 | 8205 1500 8080 1500 457 | Text Label 8080 1500 0 50 ~ 0 458 | ANT 459 | Wire Wire Line 460 | 8205 2100 8090 2100 461 | Wire Wire Line 462 | 9655 2600 9750 2600 463 | Wire Wire Line 464 | 9655 2500 9745 2500 465 | Wire Wire Line 466 | 1440 1300 1600 1300 467 | Wire Wire Line 468 | 1440 1400 1600 1400 469 | NoConn ~ 1440 1500 470 | Text Label 1600 1300 0 50 ~ 0 471 | D+ 472 | Text Label 1600 1400 0 50 ~ 0 473 | D- 474 | $Comp 475 | L Bast_WAN-rescue:AP2112K-3.3TRG1-electroniccats U2 476 | U 1 1 5DC7B9FC 477 | P 2425 4405 478 | F 0 "U2" H 2425 4875 50 0000 C CNN 479 | F 1 "AP2112K-3.3TRG1" H 2425 4784 50 0000 C CNN 480 | F 2 "Package_TO_SOT_SMD:TSOT-23-5" H 2425 4405 50 0001 L BNN 481 | F 3 "SOT-753 Diodes Inc." H 2425 4405 50 0001 L BNN 482 | F 4 "AP2112K-3.3TRG1" H 0 0 50 0001 C CNN "manf#" 483 | 1 2425 4405 484 | 1 0 0 -1 485 | $EndComp 486 | $Comp 487 | L Battery_Management:MCP73831-3-OT U5 488 | U 1 1 5DC7CD09 489 | P 1440 6675 490 | F 0 "U5" H 1705 6925 50 0000 C CNN 491 | F 1 "MCP73831-3-OT" H 1030 6940 50 0000 C CNN 492 | F 2 "Package_TO_SOT_SMD:SOT-23-5" H 1490 6425 50 0001 L CIN 493 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf" H 1290 6625 50 0001 C CNN 494 | F 4 "MCP73831T-5ACI/OT" H 0 0 50 0001 C CNN "manf#" 495 | 1 1440 6675 496 | 1 0 0 -1 497 | $EndComp 498 | $Comp 499 | L Device:Antenna_Shield AE1 500 | U 1 1 5DC7DE85 501 | P 6010 1245 502 | F 0 "AE1" H 6154 1284 50 0000 L CNN 503 | F 1 "Antenna" H 6154 1193 50 0000 L CNN 504 | F 2 "bast-wan:SMA_EDGE" H 6010 1345 50 0001 C CNN 505 | F 3 "~" H 6010 1345 50 0001 C CNN 506 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 507 | 1 6010 1245 508 | 1 0 0 -1 509 | $EndComp 510 | $Comp 511 | L Device:C_Small C2 512 | U 1 1 5DC7F1DD 513 | P 6295 1645 514 | F 0 "C2" V 6250 1730 50 0000 C CNN 515 | F 1 "47pF" V 6350 1765 50 0000 C CNN 516 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6295 1645 50 0001 C CNN 517 | F 3 "~" H 6295 1645 50 0001 C CNN 518 | F 4 "885342007006" H 0 0 50 0001 C CNN "manf#" 519 | 1 6295 1645 520 | 0 1 1 0 521 | $EndComp 522 | Wire Wire Line 523 | 6010 1445 6010 1645 524 | Wire Wire Line 525 | 6110 1445 6110 1490 526 | $Comp 527 | L power:GND #PWR07 528 | U 1 1 5DCA13AF 529 | P 6110 1490 530 | F 0 "#PWR07" H 6110 1240 50 0001 C CNN 531 | F 1 "GND" H 6225 1465 50 0000 C CNN 532 | F 2 "" H 6110 1490 50 0001 C CNN 533 | F 3 "" H 6110 1490 50 0001 C CNN 534 | 1 6110 1490 535 | 1 0 0 -1 536 | $EndComp 537 | Text Label 6965 1645 0 50 ~ 0 538 | ANT 539 | Wire Wire Line 540 | 1470 4205 1470 4145 541 | Wire Wire Line 542 | 2925 4205 3020 4205 543 | Wire Wire Line 544 | 3375 4205 3375 4150 545 | Wire Wire Line 546 | 2925 4605 2965 4605 547 | Wire Wire Line 548 | 2965 4605 2965 4710 549 | $Comp 550 | L power:GND #PWR022 551 | U 1 1 5DCBABFE 552 | P 2965 4710 553 | F 0 "#PWR022" H 2965 4460 50 0001 C CNN 554 | F 1 "GND" H 2970 4537 50 0000 C CNN 555 | F 2 "" H 2965 4710 50 0001 C CNN 556 | F 3 "" H 2965 4710 50 0001 C CNN 557 | 1 2965 4710 558 | 1 0 0 -1 559 | $EndComp 560 | $Comp 561 | L power:+3V3 #PWR015 562 | U 1 1 5DCBB33D 563 | P 3375 4150 564 | F 0 "#PWR015" H 3375 4000 50 0001 C CNN 565 | F 1 "+3V3" H 3390 4323 50 0000 C CNN 566 | F 2 "" H 3375 4150 50 0001 C CNN 567 | F 3 "" H 3375 4150 50 0001 C CNN 568 | 1 3375 4150 569 | 1 0 0 -1 570 | $EndComp 571 | $Comp 572 | L power:+BATT #PWR013 573 | U 1 1 5DCBC5E5 574 | P 1470 3675 575 | F 0 "#PWR013" H 1470 3525 50 0001 C CNN 576 | F 1 "+BATT" H 1475 3820 50 0000 C CNN 577 | F 2 "" H 1470 3675 50 0001 C CNN 578 | F 3 "" H 1470 3675 50 0001 C CNN 579 | 1 1470 3675 580 | 1 0 0 -1 581 | $EndComp 582 | $Comp 583 | L Device:C_Small C3 584 | U 1 1 5DCC28BD 585 | P 1700 4345 586 | F 0 "C3" H 1560 4405 50 0000 L CNN 587 | F 1 "10uF" H 1485 4270 50 0000 L CNN 588 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1700 4345 50 0001 C CNN 589 | F 3 "~" H 1700 4345 50 0001 C CNN 590 | F 4 "CL21A106KOQNNNG" H 0 0 50 0001 C CNN "manf#" 591 | 1 1700 4345 592 | 1 0 0 -1 593 | $EndComp 594 | $Comp 595 | L Diode:MBR340 D2 596 | U 1 1 5DCC3391 597 | P 1270 4205 598 | F 0 "D2" V 1140 4310 50 0000 R CNN 599 | F 1 "MBR120" V 1250 4550 50 0000 R CNN 600 | F 2 "Diode_SMD:D_SOD-123" H 1270 4030 50 0001 C CNN 601 | F 3 "http://www.onsemi.com/pub_link/Collateral/MBR340-D.PDF" H 1270 4205 50 0001 C CNN 602 | F 4 "MBR120VLSFT3G" V 1270 4205 50 0001 C CNN "manf#" 603 | 1 1270 4205 604 | -1 0 0 1 605 | $EndComp 606 | Wire Wire Line 607 | 1700 4245 1700 4205 608 | Connection ~ 1700 4205 609 | Wire Wire Line 610 | 1700 4205 1470 4205 611 | Wire Wire Line 612 | 1700 4445 1700 4490 613 | $Comp 614 | L power:GND #PWR017 615 | U 1 1 5DCD70E9 616 | P 1700 4490 617 | F 0 "#PWR017" H 1700 4240 50 0001 C CNN 618 | F 1 "GND" H 1705 4317 50 0000 C CNN 619 | F 2 "" H 1700 4490 50 0001 C CNN 620 | F 3 "" H 1700 4490 50 0001 C CNN 621 | 1 1700 4490 622 | 1 0 0 -1 623 | $EndComp 624 | $Comp 625 | L Device:C_Small C4 626 | U 1 1 5DCD7972 627 | P 3020 4360 628 | F 0 "C4" H 3112 4406 50 0000 L CNN 629 | F 1 "10uF" H 3112 4315 50 0000 L CNN 630 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 3020 4360 50 0001 C CNN 631 | F 3 "~" H 3020 4360 50 0001 C CNN 632 | F 4 "CL21A106KOQNNNG" H 0 0 50 0001 C CNN "manf#" 633 | 1 3020 4360 634 | 1 0 0 -1 635 | $EndComp 636 | $Comp 637 | L Device:C_Small C5 638 | U 1 1 5DCD8443 639 | P 2115 6675 640 | F 0 "C5" H 2207 6721 50 0000 L CNN 641 | F 1 "10uF" H 2207 6630 50 0000 L CNN 642 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 2115 6675 50 0001 C CNN 643 | F 3 "~" H 2115 6675 50 0001 C CNN 644 | F 4 "CL21A106KOQNNNG" H 0 0 50 0001 C CNN "manf#" 645 | 1 2115 6675 646 | 1 0 0 -1 647 | $EndComp 648 | Wire Wire Line 649 | 3020 4260 3020 4205 650 | Connection ~ 3020 4205 651 | Wire Wire Line 652 | 3020 4205 3375 4205 653 | Wire Wire Line 654 | 3020 4460 3020 4500 655 | $Comp 656 | L power:GND #PWR018 657 | U 1 1 5DCE21A1 658 | P 3020 4500 659 | F 0 "#PWR018" H 3020 4250 50 0001 C CNN 660 | F 1 "GND" H 3135 4405 50 0000 C CNN 661 | F 2 "" H 3020 4500 50 0001 C CNN 662 | F 3 "" H 3020 4500 50 0001 C CNN 663 | 1 3020 4500 664 | 1 0 0 -1 665 | $EndComp 666 | $Comp 667 | L power:VBUS #PWR02 668 | U 1 1 5D53EAFC 669 | P 1490 1050 670 | F 0 "#PWR02" H 1490 900 50 0001 C CNN 671 | F 1 "VBUS" H 1490 1200 50 0000 C CNN 672 | F 2 "" H 1490 1050 50 0001 C CNN 673 | F 3 "" H 1490 1050 50 0001 C CNN 674 | 1 1490 1050 675 | 1 0 0 -1 676 | $EndComp 677 | $Comp 678 | L power:VBUS #PWR014 679 | U 1 1 5DCE3476 680 | P 1120 3855 681 | F 0 "#PWR014" H 1120 3705 50 0001 C CNN 682 | F 1 "VBUS" H 1135 4028 50 0000 C CNN 683 | F 2 "" H 1120 3855 50 0001 C CNN 684 | F 3 "" H 1120 3855 50 0001 C CNN 685 | 1 1120 3855 686 | 1 0 0 -1 687 | $EndComp 688 | Wire Wire Line 689 | 1470 4205 1420 4205 690 | Connection ~ 1470 4205 691 | Wire Wire Line 692 | 1120 4205 1120 3945 693 | $Comp 694 | L Device:R_Small R2 695 | U 1 1 5DCF8E25 696 | P 1120 4365 697 | F 0 "R2" H 860 4450 50 0000 L CNN 698 | F 1 "100K" V 1045 4290 50 0000 L CNN 699 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1120 4365 50 0001 C CNN 700 | F 3 "~" H 1120 4365 50 0001 C CNN 701 | F 4 "CRGCQ0805F100K" H 0 0 50 0001 C CNN "manf#" 702 | 1 1120 4365 703 | 1 0 0 -1 704 | $EndComp 705 | Wire Wire Line 706 | 1120 4205 1120 4265 707 | Connection ~ 1120 4205 708 | Wire Wire Line 709 | 1120 4465 1120 4510 710 | $Comp 711 | L power:GND #PWR019 712 | U 1 1 5DD03D37 713 | P 1120 4510 714 | F 0 "#PWR019" H 1120 4260 50 0001 C CNN 715 | F 1 "GND" H 1125 4337 50 0000 C CNN 716 | F 2 "" H 1120 4510 50 0001 C CNN 717 | F 3 "" H 1120 4510 50 0001 C CNN 718 | 1 1120 4510 719 | 1 0 0 -1 720 | $EndComp 721 | $Comp 722 | L Bast_WAN-rescue:DMG2301L-Transistor_FET Q1 723 | U 1 1 5DD047C9 724 | P 1370 3945 725 | F 0 "Q1" H 1576 3991 50 0000 L CNN 726 | F 1 "DMG3415U-7" H 1520 3855 50 0000 L CNN 727 | F 2 "Package_TO_SOT_SMD:SOT-23" H 1570 3870 50 0001 L CIN 728 | F 3 "https://www.diodes.com/assets/Datasheets/DMG2301L.pdf" H 1370 3945 50 0001 L CNN 729 | F 4 "DMG3415U-7" H 0 0 50 0001 C CNN "manf#" 730 | 1 1370 3945 731 | 1 0 0 -1 732 | $EndComp 733 | Wire Wire Line 734 | 1170 3945 1120 3945 735 | Connection ~ 1120 3945 736 | Wire Wire Line 737 | 1120 3945 1120 3855 738 | Wire Wire Line 739 | 1470 3745 1470 3675 740 | Wire Wire Line 741 | 1440 6375 1440 6235 742 | Wire Wire Line 743 | 1440 6975 1440 7055 744 | $Comp 745 | L power:GND #PWR041 746 | U 1 1 5DD2C0FB 747 | P 1440 7055 748 | F 0 "#PWR041" H 1440 6805 50 0001 C CNN 749 | F 1 "GND" H 1445 6882 50 0000 C CNN 750 | F 2 "" H 1440 7055 50 0001 C CNN 751 | F 3 "" H 1440 7055 50 0001 C CNN 752 | 1 1440 7055 753 | 1 0 0 -1 754 | $EndComp 755 | $Comp 756 | L power:VBUS #PWR032 757 | U 1 1 5DD2DEF6 758 | P 1440 6235 759 | F 0 "#PWR032" H 1440 6085 50 0001 C CNN 760 | F 1 "VBUS" H 1455 6408 50 0000 C CNN 761 | F 2 "" H 1440 6235 50 0001 C CNN 762 | F 3 "" H 1440 6235 50 0001 C CNN 763 | 1 1440 6235 764 | 1 0 0 -1 765 | $EndComp 766 | Wire Wire Line 767 | 1840 6575 2115 6575 768 | Wire Wire Line 769 | 1840 6775 1890 6775 770 | Wire Wire Line 771 | 1890 6775 1890 6890 772 | Wire Wire Line 773 | 2115 6575 2285 6575 774 | Wire Wire Line 775 | 2285 6575 2285 6565 776 | Connection ~ 2115 6575 777 | $Comp 778 | L power:+BATT #PWR035 779 | U 1 1 5DD3E86D 780 | P 2285 6565 781 | F 0 "#PWR035" H 2285 6415 50 0001 C CNN 782 | F 1 "+BATT" H 2300 6738 50 0000 C CNN 783 | F 2 "" H 2285 6565 50 0001 C CNN 784 | F 3 "" H 2285 6565 50 0001 C CNN 785 | 1 2285 6565 786 | 1 0 0 -1 787 | $EndComp 788 | Wire Wire Line 789 | 2115 6775 2115 6825 790 | $Comp 791 | L power:GND #PWR036 792 | U 1 1 5DD44406 793 | P 2115 6825 794 | F 0 "#PWR036" H 2115 6575 50 0001 C CNN 795 | F 1 "GND" H 2215 6720 50 0000 C CNN 796 | F 2 "" H 2115 6825 50 0001 C CNN 797 | F 3 "" H 2115 6825 50 0001 C CNN 798 | 1 2115 6825 799 | 1 0 0 -1 800 | $EndComp 801 | $Comp 802 | L Device:R_Small R8 803 | U 1 1 5DD44C55 804 | P 1890 6990 805 | F 0 "R8" H 1949 7036 50 0000 L CNN 806 | F 1 "180" H 1949 6945 50 0000 L CNN 807 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1890 6990 50 0001 C CNN 808 | F 3 "~" H 1890 6990 50 0001 C CNN 809 | F 4 "RMCF0805JT180R" H 0 0 50 0001 C CNN "manf#" 810 | 1 1890 6990 811 | 1 0 0 -1 812 | $EndComp 813 | $Comp 814 | L Device:LED D4 815 | U 1 1 5DD4566A 816 | P 1890 7280 817 | F 0 "D4" V 1837 7358 50 0000 L CNN 818 | F 1 "CHR" V 1928 7358 50 0000 L CNN 819 | F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1890 7280 50 0001 C CNN 820 | F 3 "~" H 1890 7280 50 0001 C CNN 821 | F 4 "150080GS75000" H 0 0 50 0001 C CNN "manf#" 822 | 1 1890 7280 823 | 0 1 1 0 824 | $EndComp 825 | Wire Wire Line 826 | 1890 7130 1890 7090 827 | Wire Wire Line 828 | 1890 7430 1890 7480 829 | $Comp 830 | L power:VBUS #PWR042 831 | U 1 1 5DD51617 832 | P 1700 7450 833 | F 0 "#PWR042" H 1700 7300 50 0001 C CNN 834 | F 1 "VBUS" H 1715 7623 50 0000 C CNN 835 | F 2 "" H 1700 7450 50 0001 C CNN 836 | F 3 "" H 1700 7450 50 0001 C CNN 837 | 1 1700 7450 838 | 1 0 0 -1 839 | $EndComp 840 | Wire Wire Line 841 | 1890 7480 1700 7480 842 | Wire Wire Line 843 | 1700 7480 1700 7450 844 | Wire Wire Line 845 | 1040 6775 945 6775 846 | $Comp 847 | L Device:R_Small R6 848 | U 1 1 5DD5D374 849 | P 845 6775 850 | F 0 "R6" V 649 6775 50 0000 C CNN 851 | F 1 "1K" V 740 6775 50 0000 C CNN 852 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 845 6775 50 0001 C CNN 853 | F 3 "~" H 845 6775 50 0001 C CNN 854 | F 4 "CRCW08051K20FKEAC" H 0 0 50 0001 C CNN "manf#" 855 | 1 845 6775 856 | 0 1 1 0 857 | $EndComp 858 | Wire Wire Line 859 | 745 6775 675 6775 860 | Wire Wire Line 861 | 675 6775 675 6910 862 | $Comp 863 | L power:GND #PWR038 864 | U 1 1 5DD642F1 865 | P 675 6910 866 | F 0 "#PWR038" H 675 6660 50 0001 C CNN 867 | F 1 "GND" H 680 6737 50 0000 C CNN 868 | F 2 "" H 675 6910 50 0001 C CNN 869 | F 3 "" H 675 6910 50 0001 C CNN 870 | 1 675 6910 871 | 1 0 0 -1 872 | $EndComp 873 | Wire Notes Line 874 | 2365 490 2365 3100 875 | Wire Notes Line 876 | 2365 3100 470 3100 877 | Wire Notes Line 878 | 2355 3120 5190 3120 879 | Wire Notes Line 880 | 5190 3120 5190 470 881 | Text Notes 3275 705 0 79 ~ 0 882 | PINOUT FEATHER 883 | Text Notes 1135 635 0 79 ~ 0 884 | USB 885 | Text Notes 1050 5705 0 79 ~ 0 886 | LIPO CHARGING 887 | Text Notes 1910 3395 0 79 ~ 0 888 | POWER AND FILTERING 889 | Wire Notes Line 890 | 11195 3805 5180 3805 891 | Text Notes 7475 655 0 79 ~ 0 892 | LORA MODULE 893 | Wire Notes Line 894 | 5180 3140 5180 7785 895 | Wire Notes Line 896 | 5170 5335 485 5335 897 | Wire Notes Line 898 | 6975 6555 6975 3805 899 | $Comp 900 | L Device:R_Small R3 901 | U 1 1 5DDF3936 902 | P 6035 4765 903 | F 0 "R3" H 6094 4811 50 0000 L CNN 904 | F 1 "100K" H 6094 4720 50 0000 L CNN 905 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6035 4765 50 0001 C CNN 906 | F 3 "~" H 6035 4765 50 0001 C CNN 907 | F 4 "CRGCQ0805F100K" H 0 0 50 0001 C CNN "manf#" 908 | 1 6035 4765 909 | 1 0 0 -1 910 | $EndComp 911 | $Comp 912 | L Device:R_Small R4 913 | U 1 1 5DDF421C 914 | P 6035 5130 915 | F 0 "R4" H 6094 5176 50 0000 L CNN 916 | F 1 "100K" H 6094 5085 50 0000 L CNN 917 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6035 5130 50 0001 C CNN 918 | F 3 "~" H 6035 5130 50 0001 C CNN 919 | F 4 "CRGCQ0805F100K" H 0 0 50 0001 C CNN "manf#" 920 | 1 6035 5130 921 | 1 0 0 -1 922 | $EndComp 923 | Wire Wire Line 924 | 6035 5030 6035 4955 925 | Wire Wire Line 926 | 6035 4665 6035 4550 927 | Wire Wire Line 928 | 6035 5230 6035 5300 929 | Wire Wire Line 930 | 6035 4955 5865 4955 931 | Connection ~ 6035 4955 932 | Wire Wire Line 933 | 6035 4955 6035 4865 934 | Text Label 5865 4955 2 50 ~ 0 935 | A0 936 | $Comp 937 | L power:+BATT #PWR020 938 | U 1 1 5DE0D95C 939 | P 6035 4550 940 | F 0 "#PWR020" H 6035 4400 50 0001 C CNN 941 | F 1 "+BATT" H 6050 4723 50 0000 C CNN 942 | F 2 "" H 6035 4550 50 0001 C CNN 943 | F 3 "" H 6035 4550 50 0001 C CNN 944 | 1 6035 4550 945 | 1 0 0 -1 946 | $EndComp 947 | $Comp 948 | L power:GND #PWR026 949 | U 1 1 5DE0E513 950 | P 6035 5300 951 | F 0 "#PWR026" H 6035 5050 50 0001 C CNN 952 | F 1 "GND" H 6040 5127 50 0000 C CNN 953 | F 2 "" H 6035 5300 50 0001 C CNN 954 | F 3 "" H 6035 5300 50 0001 C CNN 955 | 1 6035 5300 956 | 1 0 0 -1 957 | $EndComp 958 | Text Notes 5580 4045 0 79 ~ 0 959 | LIPO MONITORING 960 | Text Label 10645 5105 0 50 ~ 0 961 | SWDIO 962 | Text Label 10645 5005 0 50 ~ 0 963 | SWCLK 964 | $Comp 965 | L power:GND #PWR025 966 | U 1 1 5DE306F1 967 | P 10100 5795 968 | F 0 "#PWR025" H 10100 5545 50 0001 C CNN 969 | F 1 "GND" H 10105 5622 50 0000 C CNN 970 | F 2 "" H 10100 5795 50 0001 C CNN 971 | F 3 "" H 10100 5795 50 0001 C CNN 972 | 1 10100 5795 973 | 1 0 0 -1 974 | $EndComp 975 | $Comp 976 | L power:+3V3 #PWR021 977 | U 1 1 5DE311FD 978 | P 10145 4410 979 | F 0 "#PWR021" H 10145 4260 50 0001 C CNN 980 | F 1 "+3V3" H 10160 4583 50 0000 C CNN 981 | F 2 "" H 10145 4410 50 0001 C CNN 982 | F 3 "" H 10145 4410 50 0001 C CNN 983 | 1 10145 4410 984 | 1 0 0 -1 985 | $EndComp 986 | Wire Wire Line 987 | 8070 1100 7660 1100 988 | Wire Wire Line 989 | 7660 1100 7660 1125 990 | Connection ~ 8070 1100 991 | $Comp 992 | L Device:C_Small C1 993 | U 1 1 5DE8000A 994 | P 7660 1225 995 | F 0 "C1" H 7545 1290 50 0000 L CNN 996 | F 1 "0.1uF" H 7395 1160 50 0000 L CNN 997 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7660 1225 50 0001 C CNN 998 | F 3 "~" H 7660 1225 50 0001 C CNN 999 | F 4 "CL21F104ZBCNNNC" H 0 0 50 0001 C CNN "manf#" 1000 | 1 7660 1225 1001 | 1 0 0 -1 1002 | $EndComp 1003 | Wire Wire Line 1004 | 7660 1325 7660 1370 1005 | $Comp 1006 | L power:GND #PWR06 1007 | U 1 1 5DE88565 1008 | P 7660 1370 1009 | F 0 "#PWR06" H 7660 1120 50 0001 C CNN 1010 | F 1 "GND" H 7665 1197 50 0000 C CNN 1011 | F 2 "" H 7660 1370 50 0001 C CNN 1012 | F 3 "" H 7660 1370 50 0001 C CNN 1013 | 1 7660 1370 1014 | 1 0 0 -1 1015 | $EndComp 1016 | $Comp 1017 | L Switch:SW_Push SW1 1018 | U 1 1 5DE8948F 1019 | P 6030 6380 1020 | F 0 "SW1" H 6030 6665 50 0000 C CNN 1021 | F 1 "RST" H 6030 6574 50 0000 C CNN 1022 | F 2 "Button_Switch_SMD:SW_SPST_TL3342" H 6030 6580 50 0001 C CNN 1023 | F 3 "~" H 6030 6580 50 0001 C CNN 1024 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 1025 | 1 6030 6380 1026 | 1 0 0 -1 1027 | $EndComp 1028 | Wire Wire Line 1029 | 6230 6380 6355 6380 1030 | Wire Wire Line 1031 | 5830 6380 5740 6380 1032 | Wire Wire Line 1033 | 5740 6380 5740 6425 1034 | $Comp 1035 | L power:GND #PWR033 1036 | U 1 1 5DE99C1B 1037 | P 5740 6425 1038 | F 0 "#PWR033" H 5740 6175 50 0001 C CNN 1039 | F 1 "GND" H 5745 6252 50 0000 C CNN 1040 | F 2 "" H 5740 6425 50 0001 C CNN 1041 | F 3 "" H 5740 6425 50 0001 C CNN 1042 | 1 5740 6425 1043 | 1 0 0 -1 1044 | $EndComp 1045 | Text Label 6355 6380 0 50 ~ 0 1046 | RST 1047 | Wire Notes Line 1048 | 6975 5670 5170 5670 1049 | $Comp 1050 | L Device:LED D3 1051 | U 1 1 5DEB360B 1052 | P 6145 6940 1053 | F 0 "D3" H 6138 7156 50 0000 C CNN 1054 | F 1 "ON" H 6138 7065 50 0000 C CNN 1055 | F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6145 6940 50 0001 C CNN 1056 | F 3 "~" H 6145 6940 50 0001 C CNN 1057 | F 4 "150080RS75000" H 0 0 50 0001 C CNN "manf#" 1058 | 1 6145 6940 1059 | 1 0 0 -1 1060 | $EndComp 1061 | $Comp 1062 | L Device:R_Small R7 1063 | U 1 1 5DEB4275 1064 | P 5800 6940 1065 | F 0 "R7" V 5604 6940 50 0000 C CNN 1066 | F 1 "180" V 5695 6940 50 0000 C CNN 1067 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5800 6940 50 0001 C CNN 1068 | F 3 "~" H 5800 6940 50 0001 C CNN 1069 | F 4 "RMCF0805JT180R" H 0 0 50 0001 C CNN "manf#" 1070 | 1 5800 6940 1071 | 0 1 1 0 1072 | $EndComp 1073 | Wire Wire Line 1074 | 6295 6940 6435 6940 1075 | Wire Wire Line 1076 | 6435 6940 6435 6910 1077 | Wire Wire Line 1078 | 5995 6940 5900 6940 1079 | Wire Wire Line 1080 | 5700 6940 5630 6940 1081 | Wire Wire Line 1082 | 5630 6940 5630 6995 1083 | $Comp 1084 | L power:GND #PWR040 1085 | U 1 1 5DECE0E3 1086 | P 5630 6995 1087 | F 0 "#PWR040" H 5630 6745 50 0001 C CNN 1088 | F 1 "GND" H 5635 6822 50 0000 C CNN 1089 | F 2 "" H 5630 6995 50 0001 C CNN 1090 | F 3 "" H 5630 6995 50 0001 C CNN 1091 | 1 5630 6995 1092 | 1 0 0 -1 1093 | $EndComp 1094 | $Comp 1095 | L power:+3V3 #PWR039 1096 | U 1 1 5DECEA77 1097 | P 6435 6910 1098 | F 0 "#PWR039" H 6435 6760 50 0001 C CNN 1099 | F 1 "+3V3" H 6450 7083 50 0000 C CNN 1100 | F 2 "" H 6435 6910 50 0001 C CNN 1101 | F 3 "" H 6435 6910 50 0001 C CNN 1102 | 1 6435 6910 1103 | 1 0 0 -1 1104 | $EndComp 1105 | $Comp 1106 | L Device:LED D5 1107 | U 1 1 5DED10AB 1108 | P 6115 7595 1109 | F 0 "D5" H 6108 7811 50 0000 C CNN 1110 | F 1 "D13" H 6108 7720 50 0000 C CNN 1111 | F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6115 7595 50 0001 C CNN 1112 | F 3 "~" H 6115 7595 50 0001 C CNN 1113 | F 4 "150080BS75000" H 0 0 50 0001 C CNN "manf#" 1114 | 1 6115 7595 1115 | 1 0 0 -1 1116 | $EndComp 1117 | $Comp 1118 | L Device:R_Small R9 1119 | U 1 1 5DED10B1 1120 | P 5770 7595 1121 | F 0 "R9" V 5574 7595 50 0000 C CNN 1122 | F 1 "180" V 5665 7595 50 0000 C CNN 1123 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5770 7595 50 0001 C CNN 1124 | F 3 "~" H 5770 7595 50 0001 C CNN 1125 | F 4 "RMCF0805JT180R" H 0 0 50 0001 C CNN "manf#" 1126 | 1 5770 7595 1127 | 0 1 1 0 1128 | $EndComp 1129 | Wire Wire Line 1130 | 6265 7595 6405 7595 1131 | Wire Wire Line 1132 | 5965 7595 5870 7595 1133 | Wire Wire Line 1134 | 5670 7595 5600 7595 1135 | Wire Wire Line 1136 | 5600 7595 5600 7650 1137 | $Comp 1138 | L power:GND #PWR043 1139 | U 1 1 5DED10BC 1140 | P 5600 7650 1141 | F 0 "#PWR043" H 5600 7400 50 0001 C CNN 1142 | F 1 "GND" H 5605 7477 50 0000 C CNN 1143 | F 2 "" H 5600 7650 50 0001 C CNN 1144 | F 3 "" H 5600 7650 50 0001 C CNN 1145 | 1 5600 7650 1146 | 1 0 0 -1 1147 | $EndComp 1148 | Text Label 6405 7595 0 79 ~ 0 1149 | D13 1150 | $Comp 1151 | L Device:R_Small R1 1152 | U 1 1 5DEE52DA 1153 | P 1845 4305 1154 | F 0 "R1" H 1904 4351 50 0000 L CNN 1155 | F 1 "100K" H 1904 4260 50 0000 L CNN 1156 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1845 4305 50 0001 C CNN 1157 | F 3 "~" H 1845 4305 50 0001 C CNN 1158 | F 4 "CRGCQ0805F100K" H 0 0 50 0001 C CNN "manf#" 1159 | 1 1845 4305 1160 | 1 0 0 -1 1161 | $EndComp 1162 | Wire Wire Line 1163 | 1700 4205 1845 4205 1164 | Connection ~ 1845 4205 1165 | Wire Wire Line 1166 | 1845 4205 1925 4205 1167 | Wire Wire Line 1168 | 1870 4405 1870 4440 1169 | Wire Wire Line 1170 | 1870 4440 1845 4440 1171 | Wire Wire Line 1172 | 1845 4440 1845 4405 1173 | Wire Wire Line 1174 | 1870 4405 1925 4405 1175 | Text Label 1855 4440 3 50 ~ 0 1176 | EN 1177 | Wire Notes Line 1178 | 2635 5345 2635 7795 1179 | Wire Notes Line 1180 | 2635 7795 2630 7795 1181 | Text Notes 3480 5645 0 79 ~ 0 1182 | SPI FLASH 1183 | $Comp 1184 | L Bast_WAN-rescue:W25Q32JVSS-Memory_Flash U4 1185 | U 1 1 5DF091DA 1186 | P 3765 6395 1187 | F 0 "U4" H 3420 6730 50 0000 C CNN 1188 | F 1 "W25Q32JVSS" H 4050 6750 50 0000 C CNN 1189 | F 2 "Package_SO:SO-8_3.9x4.9mm_P1.27mm" H 3765 6395 50 0001 C CNN 1190 | F 3 "http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" H 3765 6395 50 0001 C CNN 1191 | F 4 "W25Q32JVSSIQ" H 0 0 50 0001 C CNN "manf#" 1192 | 1 3765 6395 1193 | 1 0 0 -1 1194 | $EndComp 1195 | $Comp 1196 | L Bast_WAN-rescue:ATECC608A-SSHDA-Security U3 1197 | U 1 1 5DF09E98 1198 | P 7355 5150 1199 | F 0 "U3" H 7125 5196 50 0000 R CNN 1200 | F 1 "ATECC608A-TNGLORA" H 7865 4815 50 0000 R CNN 1201 | F 2 "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" H 7355 5150 50 0001 C CNN 1202 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/ATECC608A-CryptoAuthentication-Device-Summary-Data-Sheet-DS40001977B.pdf" H 7505 5400 50 0001 C CNN 1203 | F 4 "ATECC608A-SSHDA-T" H -640 -35 50 0001 C CNN "manf#" 1204 | 1 7355 5150 1205 | 1 0 0 -1 1206 | $EndComp 1207 | Wire Notes Line 1208 | 9055 3805 9055 6535 1209 | Wire Wire Line 1210 | 3265 6295 3190 6295 1211 | Wire Wire Line 1212 | 3265 6495 3145 6495 1213 | Wire Wire Line 1214 | 3765 5995 3765 5870 1215 | Wire Wire Line 1216 | 4265 6195 4385 6195 1217 | Wire Wire Line 1218 | 4265 6295 4380 6295 1219 | Wire Wire Line 1220 | 4265 6595 4385 6595 1221 | Wire Wire Line 1222 | 4385 6595 4385 6495 1223 | Wire Wire Line 1224 | 4265 6495 4385 6495 1225 | Connection ~ 4385 6495 1226 | Wire Wire Line 1227 | 4385 6495 4385 6445 1228 | $Comp 1229 | L power:+3V3 #PWR034 1230 | U 1 1 5DF596B4 1231 | P 4385 6445 1232 | F 0 "#PWR034" H 4385 6295 50 0001 C CNN 1233 | F 1 "+3V3" H 4510 6525 50 0000 C CNN 1234 | F 2 "" H 4385 6445 50 0001 C CNN 1235 | F 3 "" H 4385 6445 50 0001 C CNN 1236 | 1 4385 6445 1237 | 1 0 0 -1 1238 | $EndComp 1239 | Text Label 4380 6295 0 50 ~ 0 1240 | MOSI 1241 | Text Label 4385 6195 0 50 ~ 0 1242 | MISO 1243 | Text Label 3140 6295 2 50 ~ 0 1244 | D10 1245 | Wire Wire Line 1246 | 3765 6795 3765 6870 1247 | $Comp 1248 | L power:GND #PWR037 1249 | U 1 1 5DF6616E 1250 | P 3765 6870 1251 | F 0 "#PWR037" H 3765 6620 50 0001 C CNN 1252 | F 1 "GND" H 3770 6697 50 0000 C CNN 1253 | F 2 "" H 3765 6870 50 0001 C CNN 1254 | F 3 "" H 3765 6870 50 0001 C CNN 1255 | 1 3765 6870 1256 | 1 0 0 -1 1257 | $EndComp 1258 | $Comp 1259 | L power:+3V3 #PWR029 1260 | U 1 1 5DF66C0C 1261 | P 3765 5870 1262 | F 0 "#PWR029" H 3765 5720 50 0001 C CNN 1263 | F 1 "+3V3" H 3780 6043 50 0000 C CNN 1264 | F 2 "" H 3765 5870 50 0001 C CNN 1265 | F 3 "" H 3765 5870 50 0001 C CNN 1266 | 1 3765 5870 1267 | 1 0 0 -1 1268 | $EndComp 1269 | Wire Wire Line 1270 | 7355 5450 7355 5525 1271 | Wire Wire Line 1272 | 7355 4850 7355 4765 1273 | Text Label 8025 5050 0 50 ~ 0 1274 | SDA 1275 | Text Label 8040 5250 0 50 ~ 0 1276 | SCL 1277 | $Comp 1278 | L power:+3V3 #PWR024 1279 | U 1 1 5DF927C3 1280 | P 7355 4765 1281 | F 0 "#PWR024" H 7355 4615 50 0001 C CNN 1282 | F 1 "+3V3" H 7370 4938 50 0000 C CNN 1283 | F 2 "" H 7355 4765 50 0001 C CNN 1284 | F 3 "" H 7355 4765 50 0001 C CNN 1285 | 1 7355 4765 1286 | 1 0 0 -1 1287 | $EndComp 1288 | $Comp 1289 | L power:GND #PWR028 1290 | U 1 1 5DF936AC 1291 | P 7355 5525 1292 | F 0 "#PWR028" H 7355 5275 50 0001 C CNN 1293 | F 1 "GND" H 7360 5352 50 0000 C CNN 1294 | F 2 "" H 7355 5525 50 0001 C CNN 1295 | F 3 "" H 7355 5525 50 0001 C CNN 1296 | 1 7355 5525 1297 | 1 0 0 -1 1298 | $EndComp 1299 | $Comp 1300 | L Device:R_Small R5 1301 | U 1 1 5DF9418B 1302 | P 3190 6125 1303 | F 0 "R5" H 3249 6171 50 0000 L CNN 1304 | F 1 "100K" H 2960 6155 50 0000 L CNN 1305 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 3190 6125 50 0001 C CNN 1306 | F 3 "~" H 3190 6125 50 0001 C CNN 1307 | F 4 "CRGCQ0805F100K" H 0 0 50 0001 C CNN "manf#" 1308 | 1 3190 6125 1309 | 1 0 0 -1 1310 | $EndComp 1311 | Wire Wire Line 1312 | 3190 6225 3190 6295 1313 | Connection ~ 3190 6295 1314 | Wire Wire Line 1315 | 3190 6295 3140 6295 1316 | Wire Wire Line 1317 | 3190 6025 3190 5970 1318 | $Comp 1319 | L power:+3V3 #PWR031 1320 | U 1 1 5DFB6F69 1321 | P 3190 5970 1322 | F 0 "#PWR031" H 3190 5820 50 0001 C CNN 1323 | F 1 "+3V3" H 3205 6143 50 0000 C CNN 1324 | F 2 "" H 3190 5970 50 0001 C CNN 1325 | F 3 "" H 3190 5970 50 0001 C CNN 1326 | 1 3190 5970 1327 | 1 0 0 -1 1328 | $EndComp 1329 | Wire Wire Line 1330 | 3085 2795 2985 2795 1331 | Wire Wire Line 1332 | 2745 1595 2745 1605 1333 | Wire Wire Line 1334 | 2745 1595 2985 1595 1335 | $Comp 1336 | L power:GND #PWR011 1337 | U 1 1 5DFD0DFA 1338 | P 2985 2795 1339 | F 0 "#PWR011" H 2985 2545 50 0001 C CNN 1340 | F 1 "GND" H 2990 2622 50 0000 C CNN 1341 | F 2 "" H 2985 2795 50 0001 C CNN 1342 | F 3 "" H 2985 2795 50 0001 C CNN 1343 | 1 2985 2795 1344 | 1 0 0 -1 1345 | $EndComp 1346 | Text Notes 5640 5835 0 79 ~ 0 1347 | RESET AND LEDS 1348 | Text Label 9780 2250 0 50 ~ 0 1349 | SCK 1350 | Text Label 3145 6495 0 50 ~ 0 1351 | SCK 1352 | Wire Wire Line 1353 | 6010 1645 6195 1645 1354 | $Comp 1355 | L Device:R_Small R10 1356 | U 1 1 5DE7042C 1357 | P 7740 4875 1358 | F 0 "R10" H 7799 4921 50 0000 L CNN 1359 | F 1 "3K3" H 7560 4875 50 0000 L CNN 1360 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7740 4875 50 0001 C CNN 1361 | F 3 "~" H 7740 4875 50 0001 C CNN 1362 | 1 7740 4875 1363 | 1 0 0 -1 1364 | $EndComp 1365 | $Comp 1366 | L Device:R_Small R11 1367 | U 1 1 5DE710D8 1368 | P 7960 4870 1369 | F 0 "R11" H 8019 4916 50 0000 L CNN 1370 | F 1 "3K3" H 8019 4825 50 0000 L CNN 1371 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7960 4870 50 0001 C CNN 1372 | F 3 "~" H 7960 4870 50 0001 C CNN 1373 | 1 7960 4870 1374 | 1 0 0 -1 1375 | $EndComp 1376 | Wire Wire Line 1377 | 7655 5050 7960 5050 1378 | Wire Wire Line 1379 | 7655 5250 7740 5250 1380 | Wire Wire Line 1381 | 7740 4975 7740 5250 1382 | Connection ~ 7740 5250 1383 | Wire Wire Line 1384 | 7740 5250 8040 5250 1385 | Wire Wire Line 1386 | 7960 4970 7960 5050 1387 | Connection ~ 7960 5050 1388 | Wire Wire Line 1389 | 7960 5050 8025 5050 1390 | Wire Wire Line 1391 | 7960 4770 7960 4725 1392 | Wire Wire Line 1393 | 7960 4725 7855 4725 1394 | Wire Wire Line 1395 | 7740 4725 7740 4775 1396 | Wire Wire Line 1397 | 7855 4725 7855 4675 1398 | Connection ~ 7855 4725 1399 | Wire Wire Line 1400 | 7855 4725 7740 4725 1401 | $Comp 1402 | L power:+3V3 #PWR0101 1403 | U 1 1 5DEBCB35 1404 | P 7855 4675 1405 | F 0 "#PWR0101" H 7855 4525 50 0001 C CNN 1406 | F 1 "+3V3" H 7870 4848 50 0000 C CNN 1407 | F 2 "" H 7855 4675 50 0001 C CNN 1408 | F 3 "" H 7855 4675 50 0001 C CNN 1409 | 1 7855 4675 1410 | 1 0 0 -1 1411 | $EndComp 1412 | NoConn ~ 2985 2195 1413 | Wire Wire Line 1414 | 2985 1495 2985 1595 1415 | Connection ~ 2985 1595 1416 | Wire Wire Line 1417 | 2985 1595 3085 1595 1418 | $Comp 1419 | L Device:D_TVS_ALT D1 1420 | U 1 1 5E033E5A 1421 | P 6615 1880 1422 | F 0 "D1" V 6569 1959 50 0000 L CNN 1423 | F 1 "PGB1010402KR" V 6660 1959 50 0000 L CNN 1424 | F 2 "Inductor_SMD:L_0402_1005Metric" H 6615 1880 50 0001 C CNN 1425 | F 3 "~" H 6615 1880 50 0001 C CNN 1426 | F 4 "PGB1010402KR" V 6615 1880 50 0001 C CNN "manf#" 1427 | 1 6615 1880 1428 | 0 1 1 0 1429 | $EndComp 1430 | Wire Wire Line 1431 | 6395 1645 6615 1645 1432 | Wire Wire Line 1433 | 6615 1730 6615 1645 1434 | Connection ~ 6615 1645 1435 | Wire Wire Line 1436 | 6615 1645 6965 1645 1437 | $Comp 1438 | L power:GND #PWR010 1439 | U 1 1 5E04B598 1440 | P 6615 2100 1441 | F 0 "#PWR010" H 6615 1850 50 0001 C CNN 1442 | F 1 "GND" H 6730 2075 50 0000 C CNN 1443 | F 2 "" H 6615 2100 50 0001 C CNN 1444 | F 3 "" H 6615 2100 50 0001 C CNN 1445 | 1 6615 2100 1446 | 1 0 0 -1 1447 | $EndComp 1448 | Wire Wire Line 1449 | 6615 2030 6615 2100 1450 | $Comp 1451 | L Connector:Conn_ARM_JTAG_SWD_10 J? 1452 | U 1 1 5E14C8E7 1453 | P 10145 5105 1454 | F 0 "J?" H 9850 5645 50 0000 R CNN 1455 | F 1 "Conn_ARM_JTAG_SWD_10" V 9685 5515 50 0000 R CNN 1456 | F 2 "" H 10145 5105 50 0001 C CNN 1457 | F 3 "http://infocenter.arm.com/help/topic/com.arm.doc.ddi0314h/DDI0314H_coresight_components_trm.pdf" V 9795 3855 50 0001 C CNN 1458 | 1 10145 5105 1459 | 1 0 0 -1 1460 | $EndComp 1461 | NoConn ~ 10645 5205 1462 | NoConn ~ 10645 5305 1463 | Wire Wire Line 1464 | 10100 5795 10100 5745 1465 | Wire Wire Line 1466 | 10100 5745 10045 5745 1467 | Wire Wire Line 1468 | 10045 5745 10045 5705 1469 | Wire Wire Line 1470 | 10100 5745 10145 5745 1471 | Wire Wire Line 1472 | 10145 5745 10145 5705 1473 | Connection ~ 10100 5745 1474 | Wire Wire Line 1475 | 10145 4410 10145 4505 1476 | Text Label 10645 4805 0 50 ~ 0 1477 | RST 1478 | $EndSCHEMATC 1479 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN.csv: -------------------------------------------------------------------------------- 1 | "Item","Qty","Reference(s)","Value","manf#" 2 | "1","1","AE1","Antenna","-" 3 | "2","1","C1","0.1uF","0603YG104ZAT2A" 4 | "3","1","C2","47pF","0603CG470J500NT" 5 | "4","3","C3, C4, C5","10uF","GRM188R61C106MA73D" 6 | "5","1","D2","MBR120","MBR120LSF" 7 | "6","1","D4","CHR","NCD0805G1" 8 | "7","1","D5","D13","BL-HB335A-TRE" 9 | "8","1","J1","USB_B_Micro","U254-051N-4BH806" 10 | "9","1","J2","Conn_Right","-" 11 | "10","1","J3","Conn_Left","-" 12 | "11","1","J4","Conn_Battery","-" 13 | "12","1","J5","SWD","" 14 | "13","1","Q1","DMG3415U-7","DMG3415UQ-7" 15 | "14","2","R1, R2","100K","RC0603FR-07100KL" 16 | "15","1","R3","1M","RC0603JR-071ML" 17 | "16","1","R4","1.5M","RC0603JR-071M5L" 18 | "17","1","R6","4.7K","RS-03K4701FT" 19 | "18","2","R8, R9","330","RC0603FR-07330RL" 20 | "19","2","R10, R11","10K","RC0603JR-0710KL" 21 | "20","1","SW1","RST","TS-1187A-C-C-B" 22 | "21","1","U1","RAK4260","-" 23 | "22","1","U2","AP2112K-3.3TRG1","AP2112K-3.3TRG1" 24 | "23","1","U3","ATECC608A-TNGLORA","ATECC608A-MAHCZ-T" 25 | "24","1","U5","MCP73831-3-OT","MCP73831T-5ACI/OT" 26 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 11, 40 | 12, 41 | 13, 42 | 14, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36 64 | ], 65 | "visible_layers": "fffffff_ffffffff", 66 | "zone_display_mode": 0 67 | }, 68 | "meta": { 69 | "filename": "Bast_WAN.kicad_prl", 70 | "version": 3 71 | }, 72 | "project": { 73 | "files": [] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.05, 6 | "copper_line_width": 0.12, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 0.7, 9 | "copper_text_size_v": 0.7, 10 | "copper_text_thickness": 0.12, 11 | "copper_text_upright": true, 12 | "courtyard_line_width": 0.05, 13 | "other_line_width": 0.15, 14 | "other_text_italic": false, 15 | "other_text_size_h": 1.0, 16 | "other_text_size_v": 1.0, 17 | "other_text_thickness": 0.15, 18 | "other_text_upright": true, 19 | "silk_line_width": 0.12, 20 | "silk_text_italic": false, 21 | "silk_text_size_h": 0.7, 22 | "silk_text_size_v": 0.7, 23 | "silk_text_thickness": 0.12, 24 | "silk_text_upright": true 25 | }, 26 | "diff_pair_dimensions": [ 27 | { 28 | "gap": 0.25, 29 | "via_gap": 0.25, 30 | "width": 0.2 31 | } 32 | ], 33 | "drc_exclusions": [], 34 | "rule_severitieslegacy_courtyards_overlap": true, 35 | "rule_severitieslegacy_no_courtyard_defined": false, 36 | "rules": { 37 | "allow_blind_buried_vias": false, 38 | "allow_microvias": false, 39 | "min_hole_to_hole": 0.25, 40 | "min_microvia_diameter": 0.2, 41 | "min_microvia_drill": 0.09999999999999999, 42 | "min_through_hole_diameter": 0.3, 43 | "min_track_width": 0.2, 44 | "min_via_diameter": 0.4, 45 | "solder_mask_clearance": 0.051, 46 | "solder_mask_min_width": 0.25, 47 | "solder_paste_clearance": 0.0, 48 | "solder_paste_margin_ratio": -0.0 49 | }, 50 | "track_widths": [ 51 | 0.2, 52 | 0.2, 53 | 0.25, 54 | 0.3, 55 | 0.35, 56 | 0.5 57 | ], 58 | "via_dimensions": [ 59 | { 60 | "diameter": 0.8, 61 | "drill": 0.4 62 | } 63 | ] 64 | }, 65 | "layer_presets": [] 66 | }, 67 | "boards": [], 68 | "cvpcb": { 69 | "equivalence_files": [] 70 | }, 71 | "erc": { 72 | "erc_exclusions": [], 73 | "meta": { 74 | "version": 0 75 | }, 76 | "pin_map": [ 77 | [ 78 | 0, 79 | 0, 80 | 0, 81 | 0, 82 | 0, 83 | 0, 84 | 1, 85 | 0, 86 | 0, 87 | 0, 88 | 0, 89 | 2 90 | ], 91 | [ 92 | 0, 93 | 2, 94 | 0, 95 | 1, 96 | 0, 97 | 0, 98 | 1, 99 | 0, 100 | 2, 101 | 2, 102 | 2, 103 | 2 104 | ], 105 | [ 106 | 0, 107 | 0, 108 | 0, 109 | 0, 110 | 0, 111 | 0, 112 | 1, 113 | 0, 114 | 1, 115 | 0, 116 | 1, 117 | 2 118 | ], 119 | [ 120 | 0, 121 | 1, 122 | 0, 123 | 0, 124 | 0, 125 | 0, 126 | 1, 127 | 1, 128 | 2, 129 | 1, 130 | 1, 131 | 2 132 | ], 133 | [ 134 | 0, 135 | 0, 136 | 0, 137 | 0, 138 | 0, 139 | 0, 140 | 1, 141 | 0, 142 | 0, 143 | 0, 144 | 0, 145 | 2 146 | ], 147 | [ 148 | 0, 149 | 0, 150 | 0, 151 | 0, 152 | 0, 153 | 0, 154 | 0, 155 | 0, 156 | 0, 157 | 0, 158 | 0, 159 | 2 160 | ], 161 | [ 162 | 1, 163 | 1, 164 | 1, 165 | 1, 166 | 1, 167 | 0, 168 | 1, 169 | 1, 170 | 1, 171 | 1, 172 | 1, 173 | 2 174 | ], 175 | [ 176 | 0, 177 | 0, 178 | 0, 179 | 1, 180 | 0, 181 | 0, 182 | 1, 183 | 0, 184 | 0, 185 | 0, 186 | 0, 187 | 2 188 | ], 189 | [ 190 | 0, 191 | 2, 192 | 1, 193 | 2, 194 | 0, 195 | 0, 196 | 1, 197 | 0, 198 | 2, 199 | 2, 200 | 2, 201 | 2 202 | ], 203 | [ 204 | 0, 205 | 2, 206 | 0, 207 | 1, 208 | 0, 209 | 0, 210 | 1, 211 | 0, 212 | 2, 213 | 0, 214 | 0, 215 | 2 216 | ], 217 | [ 218 | 0, 219 | 2, 220 | 1, 221 | 1, 222 | 0, 223 | 0, 224 | 1, 225 | 0, 226 | 2, 227 | 0, 228 | 0, 229 | 2 230 | ], 231 | [ 232 | 2, 233 | 2, 234 | 2, 235 | 2, 236 | 2, 237 | 2, 238 | 2, 239 | 2, 240 | 2, 241 | 2, 242 | 2, 243 | 2 244 | ] 245 | ], 246 | "rule_severities": { 247 | "bus_definition_conflict": "error", 248 | "bus_entry_needed": "error", 249 | "bus_label_syntax": "error", 250 | "bus_to_bus_conflict": "error", 251 | "bus_to_net_conflict": "error", 252 | "different_unit_footprint": "error", 253 | "different_unit_net": "error", 254 | "duplicate_reference": "error", 255 | "duplicate_sheet_names": "error", 256 | "extra_units": "error", 257 | "global_label_dangling": "warning", 258 | "hier_label_mismatch": "error", 259 | "label_dangling": "error", 260 | "lib_symbol_issues": "warning", 261 | "multiple_net_names": "warning", 262 | "net_not_bus_member": "warning", 263 | "no_connect_connected": "warning", 264 | "no_connect_dangling": "warning", 265 | "pin_not_connected": "error", 266 | "pin_not_driven": "error", 267 | "pin_to_pin": "warning", 268 | "power_pin_not_driven": "error", 269 | "similar_labels": "warning", 270 | "unannotated": "error", 271 | "unit_value_mismatch": "error", 272 | "unresolved_variable": "error", 273 | "wire_dangling": "error" 274 | } 275 | }, 276 | "libraries": { 277 | "pinned_footprint_libs": [], 278 | "pinned_symbol_libs": [] 279 | }, 280 | "meta": { 281 | "filename": "Bast_WAN.kicad_pro", 282 | "version": 1 283 | }, 284 | "net_settings": { 285 | "classes": [ 286 | { 287 | "bus_width": 12.0, 288 | "clearance": 0.2, 289 | "diff_pair_gap": 0.25, 290 | "diff_pair_via_gap": 0.25, 291 | "diff_pair_width": 0.2, 292 | "line_style": 0, 293 | "microvia_diameter": 0.3, 294 | "microvia_drill": 0.1, 295 | "name": "Default", 296 | "pcb_color": "rgba(0, 0, 0, 0.000)", 297 | "schematic_color": "rgba(0, 0, 0, 0.000)", 298 | "track_width": 0.25, 299 | "via_diameter": 0.8, 300 | "via_drill": 0.4, 301 | "wire_width": 6.0 302 | } 303 | ], 304 | "meta": { 305 | "version": 2 306 | }, 307 | "net_colors": null 308 | }, 309 | "pcbnew": { 310 | "last_paths": { 311 | "gencad": "", 312 | "idf": "", 313 | "netlist": "", 314 | "specctra_dsn": "", 315 | "step": "", 316 | "vrml": "" 317 | }, 318 | "page_layout_descr_file": "" 319 | }, 320 | "schematic": { 321 | "annotate_start_num": 0, 322 | "drawing": { 323 | "default_line_thickness": 6.0, 324 | "default_text_size": 50.0, 325 | "field_names": [], 326 | "intersheets_ref_own_page": false, 327 | "intersheets_ref_prefix": "", 328 | "intersheets_ref_short": false, 329 | "intersheets_ref_show": false, 330 | "intersheets_ref_suffix": "", 331 | "junction_size_choice": 3, 332 | "label_size_ratio": 0.25, 333 | "pin_symbol_size": 0.0, 334 | "text_offset_ratio": 0.08 335 | }, 336 | "legacy_lib_dir": "", 337 | "legacy_lib_list": [], 338 | "meta": { 339 | "version": 1 340 | }, 341 | "net_format_name": "", 342 | "ngspice": { 343 | "fix_include_paths": true, 344 | "fix_passive_vals": false, 345 | "meta": { 346 | "version": 0 347 | }, 348 | "model_mode": 0, 349 | "workbook_filename": "" 350 | }, 351 | "page_layout_descr_file": "", 352 | "plot_directory": "", 353 | "spice_adjust_passive_values": false, 354 | "spice_external_command": "spice \"%I\"", 355 | "subpart_first_id": 65, 356 | "subpart_id_separator": 0 357 | }, 358 | "sheets": [ 359 | [ 360 | "a13ab237-8f8d-4e16-8c47-4440653b8534", 361 | "" 362 | ] 363 | ], 364 | "text_variables": {} 365 | } 366 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElectronicCats/BastWAN/a7a20c527d667776def65a42b2737b9515827c59/Hardware/Bast_WAN.pdf -------------------------------------------------------------------------------- /Hardware/Bast_WAN.pro: -------------------------------------------------------------------------------- 1 | update=jueves, 10 de septiembre de 2020, 20:52:02 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [cvpcb] 9 | version=1 10 | NetIExt=net 11 | [eeschema] 12 | version=1 13 | LibDir= 14 | [eeschema/libraries] 15 | [pcbnew] 16 | version=1 17 | PageLayoutDescrFile= 18 | LastNetListRead= 19 | CopperLayerCount=4 20 | BoardThickness=1.6 21 | AllowMicroVias=0 22 | AllowBlindVias=0 23 | RequireCourtyardDefinitions=0 24 | ProhibitOverlappingCourtyards=1 25 | MinTrackWidth=0.2 26 | MinViaDiameter=0.4 27 | MinViaDrill=0.3 28 | MinMicroViaDiameter=0.2 29 | MinMicroViaDrill=0.09999999999999999 30 | MinHoleToHole=0.25 31 | TrackWidth1=0.2 32 | TrackWidth2=0.2 33 | TrackWidth3=0.25 34 | TrackWidth4=0.3 35 | TrackWidth5=0.35 36 | TrackWidth6=0.5 37 | ViaDiameter1=0.8 38 | ViaDrill1=0.4 39 | dPairWidth1=0.2 40 | dPairGap1=0.25 41 | dPairViaGap1=0.25 42 | SilkLineWidth=0.12 43 | SilkTextSizeV=0.7 44 | SilkTextSizeH=0.7 45 | SilkTextSizeThickness=0.12 46 | SilkTextItalic=0 47 | SilkTextUpright=1 48 | CopperLineWidth=0.12 49 | CopperTextSizeV=0.7 50 | CopperTextSizeH=0.7 51 | CopperTextThickness=0.12 52 | CopperTextItalic=0 53 | CopperTextUpright=1 54 | EdgeCutLineWidth=0.05 55 | CourtyardLineWidth=0.05 56 | OthersLineWidth=0.15 57 | OthersTextSizeV=1 58 | OthersTextSizeH=1 59 | OthersTextSizeThickness=0.15 60 | OthersTextItalic=0 61 | OthersTextUpright=1 62 | SolderMaskClearance=0.051 63 | SolderMaskMinWidth=0.25 64 | SolderPasteClearance=0 65 | SolderPasteRatio=-0 66 | [pcbnew/Layer.F.Cu] 67 | Name=F.Cu 68 | Type=0 69 | Enabled=1 70 | [pcbnew/Layer.In1.Cu] 71 | Name=In1.Cu 72 | Type=1 73 | Enabled=1 74 | [pcbnew/Layer.In2.Cu] 75 | Name=In2.Cu 76 | Type=1 77 | Enabled=1 78 | [pcbnew/Layer.In3.Cu] 79 | Name=In3.Cu 80 | Type=0 81 | Enabled=0 82 | [pcbnew/Layer.In4.Cu] 83 | Name=In4.Cu 84 | Type=0 85 | Enabled=0 86 | [pcbnew/Layer.In5.Cu] 87 | Name=In5.Cu 88 | Type=0 89 | Enabled=0 90 | [pcbnew/Layer.In6.Cu] 91 | Name=In6.Cu 92 | Type=0 93 | Enabled=0 94 | [pcbnew/Layer.In7.Cu] 95 | Name=In7.Cu 96 | Type=0 97 | Enabled=0 98 | [pcbnew/Layer.In8.Cu] 99 | Name=In8.Cu 100 | Type=0 101 | Enabled=0 102 | [pcbnew/Layer.In9.Cu] 103 | Name=In9.Cu 104 | Type=0 105 | Enabled=0 106 | [pcbnew/Layer.In10.Cu] 107 | Name=In10.Cu 108 | Type=0 109 | Enabled=0 110 | [pcbnew/Layer.In11.Cu] 111 | Name=In11.Cu 112 | Type=0 113 | Enabled=0 114 | [pcbnew/Layer.In12.Cu] 115 | Name=In12.Cu 116 | Type=0 117 | Enabled=0 118 | [pcbnew/Layer.In13.Cu] 119 | Name=In13.Cu 120 | Type=0 121 | Enabled=0 122 | [pcbnew/Layer.In14.Cu] 123 | Name=In14.Cu 124 | Type=0 125 | Enabled=0 126 | [pcbnew/Layer.In15.Cu] 127 | Name=In15.Cu 128 | Type=0 129 | Enabled=0 130 | [pcbnew/Layer.In16.Cu] 131 | Name=In16.Cu 132 | Type=0 133 | Enabled=0 134 | [pcbnew/Layer.In17.Cu] 135 | Name=In17.Cu 136 | Type=0 137 | Enabled=0 138 | [pcbnew/Layer.In18.Cu] 139 | Name=In18.Cu 140 | Type=0 141 | Enabled=0 142 | [pcbnew/Layer.In19.Cu] 143 | Name=In19.Cu 144 | Type=0 145 | Enabled=0 146 | [pcbnew/Layer.In20.Cu] 147 | Name=In20.Cu 148 | Type=0 149 | Enabled=0 150 | [pcbnew/Layer.In21.Cu] 151 | Name=In21.Cu 152 | Type=0 153 | Enabled=0 154 | [pcbnew/Layer.In22.Cu] 155 | Name=In22.Cu 156 | Type=0 157 | Enabled=0 158 | [pcbnew/Layer.In23.Cu] 159 | Name=In23.Cu 160 | Type=0 161 | Enabled=0 162 | [pcbnew/Layer.In24.Cu] 163 | Name=In24.Cu 164 | Type=0 165 | Enabled=0 166 | [pcbnew/Layer.In25.Cu] 167 | Name=In25.Cu 168 | Type=0 169 | Enabled=0 170 | [pcbnew/Layer.In26.Cu] 171 | Name=In26.Cu 172 | Type=0 173 | Enabled=0 174 | [pcbnew/Layer.In27.Cu] 175 | Name=In27.Cu 176 | Type=0 177 | Enabled=0 178 | [pcbnew/Layer.In28.Cu] 179 | Name=In28.Cu 180 | Type=0 181 | Enabled=0 182 | [pcbnew/Layer.In29.Cu] 183 | Name=In29.Cu 184 | Type=0 185 | Enabled=0 186 | [pcbnew/Layer.In30.Cu] 187 | Name=In30.Cu 188 | Type=0 189 | Enabled=0 190 | [pcbnew/Layer.B.Cu] 191 | Name=B.Cu 192 | Type=0 193 | Enabled=1 194 | [pcbnew/Layer.B.Adhes] 195 | Enabled=1 196 | [pcbnew/Layer.F.Adhes] 197 | Enabled=1 198 | [pcbnew/Layer.B.Paste] 199 | Enabled=1 200 | [pcbnew/Layer.F.Paste] 201 | Enabled=1 202 | [pcbnew/Layer.B.SilkS] 203 | Enabled=1 204 | [pcbnew/Layer.F.SilkS] 205 | Enabled=1 206 | [pcbnew/Layer.B.Mask] 207 | Enabled=1 208 | [pcbnew/Layer.F.Mask] 209 | Enabled=1 210 | [pcbnew/Layer.Dwgs.User] 211 | Enabled=1 212 | [pcbnew/Layer.Cmts.User] 213 | Enabled=1 214 | [pcbnew/Layer.Eco1.User] 215 | Enabled=1 216 | [pcbnew/Layer.Eco2.User] 217 | Enabled=1 218 | [pcbnew/Layer.Edge.Cuts] 219 | Enabled=1 220 | [pcbnew/Layer.Margin] 221 | Enabled=1 222 | [pcbnew/Layer.B.CrtYd] 223 | Enabled=1 224 | [pcbnew/Layer.F.CrtYd] 225 | Enabled=1 226 | [pcbnew/Layer.B.Fab] 227 | Enabled=1 228 | [pcbnew/Layer.F.Fab] 229 | Enabled=1 230 | [pcbnew/Layer.Rescue] 231 | Enabled=0 232 | [pcbnew/Netclasses] 233 | [pcbnew/Netclasses/Default] 234 | Name=Default 235 | Clearance=0.2 236 | TrackWidth=0.2 237 | ViaDiameter=0.8 238 | ViaDrill=0.4 239 | uViaDiameter=0.3 240 | uViaDrill=0.1 241 | dPairWidth=0.2 242 | dPairGap=0.25 243 | dPairViaGap=0.25 244 | -------------------------------------------------------------------------------- /Hardware/Bast_WAN.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "Bast WAN" 8 | Date "2020-09-11" 9 | Rev "2.0v" 10 | Comp "Electronic Cats" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "Eduardo Contreras" 14 | Comment4 "Andres Sabas" 15 | $EndDescr 16 | $Comp 17 | L Connector:USB_B_Micro J1 18 | U 1 1 5D4D715B 19 | P 1140 1300 20 | F 0 "J1" H 1140 1650 50 0000 C CNN 21 | F 1 "USB_B_Micro" V 890 1300 50 0000 C CNN 22 | F 2 "Connectors:U254051N4BH806" H 1290 1250 50 0001 C CNN 23 | F 3 "~" H 1290 1250 50 0001 C CNN 24 | F 4 "U254-051N-4BH806" H 0 0 50 0001 C CNN "manf#" 25 | 1 1140 1300 26 | 1 0 0 -1 27 | $EndComp 28 | $Comp 29 | L power:GND #PWR023 30 | U 1 1 5D4DC006 31 | P 4075 4790 32 | F 0 "#PWR023" H 4075 4540 50 0001 C CNN 33 | F 1 "GND" H 4075 4640 50 0000 C CNN 34 | F 2 "" H 4075 4790 50 0001 C CNN 35 | F 3 "" H 4075 4790 50 0001 C CNN 36 | 1 4075 4790 37 | 1 0 0 -1 38 | $EndComp 39 | $Comp 40 | L power:+BATT #PWR016 41 | U 1 1 5D4DC4E8 42 | P 4075 4190 43 | F 0 "#PWR016" H 4075 4040 50 0001 C CNN 44 | F 1 "+BATT" H 4075 4340 50 0000 C CNN 45 | F 2 "" H 4075 4190 50 0001 C CNN 46 | F 3 "" H 4075 4190 50 0001 C CNN 47 | 1 4075 4190 48 | 1 0 0 -1 49 | $EndComp 50 | Wire Wire Line 51 | 4075 4740 4075 4790 52 | Wire Wire Line 53 | 4075 4240 4075 4190 54 | $Comp 55 | L Connector_Generic:Conn_01x12 J2 56 | U 1 1 5D4E69E8 57 | P 3935 1795 58 | F 0 "J2" H 3935 2395 50 0000 C CNN 59 | F 1 "Conn_Right" V 4035 1595 50 0000 C CNN 60 | F 2 "Connector_PinSocket_2.54mm:PinSocket_1x12_P2.54mm_Vertical" H 3935 1795 50 0001 C CNN 61 | F 3 "~" H 3935 1795 50 0001 C CNN 62 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 63 | 1 3935 1795 64 | -1 0 0 -1 65 | $EndComp 66 | $Comp 67 | L Connector_Generic:Conn_01x16 J3 68 | U 1 1 5D4E7BAF 69 | P 3285 1995 70 | F 0 "J3" H 3285 2795 50 0000 C CNN 71 | F 1 "Conn_Left" V 3385 1995 50 0000 C CNN 72 | F 2 "Connector_PinSocket_2.54mm:PinSocket_1x16_P2.54mm_Vertical" H 3285 1995 50 0001 C CNN 73 | F 3 "~" H 3285 1995 50 0001 C CNN 74 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 75 | 1 3285 1995 76 | 1 0 0 -1 77 | $EndComp 78 | Wire Wire Line 79 | 3085 1295 2985 1295 80 | Wire Wire Line 81 | 3085 1395 3035 1395 82 | Wire Wire Line 83 | 3085 1495 2985 1495 84 | Wire Wire Line 85 | 3085 1695 2985 1695 86 | Wire Wire Line 87 | 3085 1795 2985 1795 88 | Wire Wire Line 89 | 3085 1895 2985 1895 90 | Wire Wire Line 91 | 3085 1995 2985 1995 92 | Wire Wire Line 93 | 3085 2095 2985 2095 94 | Wire Wire Line 95 | 3085 2195 2985 2195 96 | Wire Wire Line 97 | 3085 2295 2985 2295 98 | Wire Wire Line 99 | 3085 2395 2985 2395 100 | Wire Wire Line 101 | 3085 2495 2985 2495 102 | Wire Wire Line 103 | 3085 2595 2985 2595 104 | Wire Wire Line 105 | 3085 2695 2985 2695 106 | Wire Wire Line 107 | 4135 1295 4185 1295 108 | Text Label 2985 1295 2 50 ~ 0 109 | RST 110 | Text Label 2985 1695 2 50 ~ 0 111 | A0 112 | Text Label 2985 1795 2 50 ~ 0 113 | A1 114 | Text Label 2985 1895 2 50 ~ 0 115 | A2 116 | Text Label 2985 1995 2 50 ~ 0 117 | A3 118 | Text Label 2985 2095 2 50 ~ 0 119 | A4 120 | Text Label 2985 2295 2 50 ~ 0 121 | SCK 122 | Text Label 2985 2395 2 50 ~ 0 123 | MOSI 124 | Text Label 2985 2495 2 50 ~ 0 125 | MISO 126 | Text Label 2985 2595 2 50 ~ 0 127 | RX 128 | Text Label 2985 2695 2 50 ~ 0 129 | TX 130 | $Comp 131 | L power:+BATT #PWR04 132 | U 1 1 5D53E0CA 133 | P 4185 1245 134 | F 0 "#PWR04" H 4185 1095 50 0001 C CNN 135 | F 1 "+BATT" H 4185 1395 50 0000 C CNN 136 | F 2 "" H 4185 1245 50 0001 C CNN 137 | F 3 "" H 4185 1245 50 0001 C CNN 138 | 1 4185 1245 139 | 1 0 0 -1 140 | $EndComp 141 | $Comp 142 | L power:VBUS #PWR05 143 | U 1 1 5D53E609 144 | P 4435 1245 145 | F 0 "#PWR05" H 4435 1095 50 0001 C CNN 146 | F 1 "VBUS" H 4435 1395 50 0000 C CNN 147 | F 2 "" H 4435 1245 50 0001 C CNN 148 | F 3 "" H 4435 1245 50 0001 C CNN 149 | 1 4435 1245 150 | 1 0 0 -1 151 | $EndComp 152 | Wire Wire Line 153 | 1440 1100 1490 1100 154 | Wire Wire Line 155 | 1490 1100 1490 1050 156 | Wire Wire Line 157 | 1140 1700 1140 1750 158 | Wire Wire Line 159 | 1140 1750 1090 1750 160 | Wire Wire Line 161 | 1040 1750 1040 1700 162 | Wire Wire Line 163 | 1090 1750 1090 1800 164 | Connection ~ 1090 1750 165 | Wire Wire Line 166 | 1090 1750 1040 1750 167 | $Comp 168 | L power:GND #PWR09 169 | U 1 1 5D54094A 170 | P 1090 1800 171 | F 0 "#PWR09" H 1090 1550 50 0001 C CNN 172 | F 1 "GND" H 1090 1650 50 0000 C CNN 173 | F 2 "" H 1090 1800 50 0001 C CNN 174 | F 3 "" H 1090 1800 50 0001 C CNN 175 | 1 1090 1800 176 | 1 0 0 -1 177 | $EndComp 178 | $Comp 179 | L power:+3.3V #PWR03 180 | U 1 1 5D541790 181 | P 3035 1195 182 | F 0 "#PWR03" H 3035 1045 50 0001 C CNN 183 | F 1 "+3.3V" H 3035 1345 50 0000 C CNN 184 | F 2 "" H 3035 1195 50 0001 C CNN 185 | F 3 "" H 3035 1195 50 0001 C CNN 186 | 1 3035 1195 187 | 1 0 0 -1 188 | $EndComp 189 | $Comp 190 | L power:GND #PWR08 191 | U 1 1 5D545285 192 | P 2745 1605 193 | F 0 "#PWR08" H 2745 1355 50 0001 C CNN 194 | F 1 "GND" H 2745 1455 50 0000 C CNN 195 | F 2 "" H 2745 1605 50 0001 C CNN 196 | F 3 "" H 2745 1605 50 0001 C CNN 197 | 1 2745 1605 198 | 1 0 0 -1 199 | $EndComp 200 | Wire Wire Line 201 | 3035 1195 3035 1395 202 | Wire Wire Line 203 | 4185 1295 4185 1245 204 | Wire Wire Line 205 | 4435 1245 4435 1495 206 | Wire Wire Line 207 | 4135 1495 4435 1495 208 | Text Label 4185 2195 0 50 ~ 0 209 | D5 210 | Text Label 4185 2095 0 50 ~ 0 211 | D6 212 | Text Label 4185 1995 0 50 ~ 0 213 | D9 214 | Text Label 4185 1895 0 50 ~ 0 215 | D10 216 | Text Label 4185 1795 0 50 ~ 0 217 | D11 218 | Text Label 4185 1695 0 50 ~ 0 219 | D12 220 | Text Label 4185 1595 0 50 ~ 0 221 | D13 222 | Text Label 4185 2295 0 50 ~ 0 223 | SCL 224 | Text Label 4185 2395 0 50 ~ 0 225 | SDA 226 | Wire Wire Line 227 | 4135 2395 4185 2395 228 | Wire Wire Line 229 | 4135 2295 4185 2295 230 | Wire Wire Line 231 | 4135 2195 4185 2195 232 | Wire Wire Line 233 | 4135 2095 4185 2095 234 | Wire Wire Line 235 | 4135 1995 4185 1995 236 | Wire Wire Line 237 | 4135 1895 4185 1895 238 | Wire Wire Line 239 | 4135 1795 4185 1795 240 | Wire Wire Line 241 | 4135 1695 4185 1695 242 | Wire Wire Line 243 | 4135 1595 4185 1595 244 | Wire Wire Line 245 | 4135 1395 4185 1395 246 | Text Label 4185 1395 0 50 ~ 0 247 | EN 248 | $Comp 249 | L Connector_Generic:Conn_02x01 J4 250 | U 1 1 5D4DC9A5 251 | P 4075 4440 252 | F 0 "J4" V 4225 4540 50 0000 L CNN 253 | F 1 "Conn_Battery" H 4125 4340 50 0000 C CNN 254 | F 2 "bast-wan:JST_S2B-PH-SM4-TB(LF)(SN)" H 4075 4440 50 0001 C CNN 255 | F 3 "~" H 4075 4440 50 0001 C CNN 256 | F 4 "-" H 0 -100 50 0001 C CNN "manf#" 257 | 1 4075 4440 258 | 0 1 1 0 259 | $EndComp 260 | $Comp 261 | L Bast_WAN-rescue:RAK4260-electroniccats U1 262 | U 1 1 5DC2C674 263 | P 8905 1150 264 | F 0 "U1" H 8930 1525 50 0000 C CNN 265 | F 1 "RAK4260" H 8930 1434 50 0000 C CNN 266 | F 2 "bast-wan:RAK4260-footprint_w_solder_paste" H 8555 800 50 0001 C CNN 267 | F 3 "" H 8555 800 50 0001 C CNN 268 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 269 | 1 8905 1150 270 | 1 0 0 -1 271 | $EndComp 272 | Wire Wire Line 273 | 8205 1000 8070 1000 274 | Wire Wire Line 275 | 8070 1000 8070 955 276 | Wire Wire Line 277 | 8205 1100 8070 1100 278 | Wire Wire Line 279 | 8070 1100 8070 1000 280 | Connection ~ 8070 1000 281 | Wire Wire Line 282 | 8205 1300 8130 1300 283 | Wire Wire Line 284 | 9655 1850 9790 1850 285 | Wire Wire Line 286 | 9655 1950 9790 1950 287 | Text Label 9790 1950 0 50 ~ 0 288 | D+ 289 | Text Label 9790 1850 0 50 ~ 0 290 | D- 291 | Wire Wire Line 292 | 8205 2250 8060 2250 293 | Wire Wire Line 294 | 8060 2250 8060 2350 295 | Wire Wire Line 296 | 8205 2350 8060 2350 297 | Connection ~ 8060 2350 298 | Wire Wire Line 299 | 8060 2350 8060 2450 300 | Wire Wire Line 301 | 8205 2450 8060 2450 302 | Connection ~ 8060 2450 303 | Wire Wire Line 304 | 8060 2450 8060 2550 305 | Wire Wire Line 306 | 8205 2550 8060 2550 307 | Connection ~ 8060 2550 308 | Wire Wire Line 309 | 8060 2550 8060 2650 310 | Wire Wire Line 311 | 8205 2650 8060 2650 312 | Connection ~ 8060 2650 313 | Wire Wire Line 314 | 8060 2650 8060 2750 315 | Wire Wire Line 316 | 8205 2750 8060 2750 317 | Connection ~ 8060 2750 318 | Wire Wire Line 319 | 8060 2750 8060 2850 320 | Wire Wire Line 321 | 8205 2850 8060 2850 322 | Connection ~ 8060 2850 323 | Wire Wire Line 324 | 8060 2850 8060 2950 325 | Wire Wire Line 326 | 8205 2950 8060 2950 327 | Connection ~ 8060 2950 328 | Wire Wire Line 329 | 8060 2950 8060 3050 330 | Wire Wire Line 331 | 8205 3050 8060 3050 332 | Connection ~ 8060 3050 333 | Wire Wire Line 334 | 8060 3050 8060 3150 335 | Wire Wire Line 336 | 8205 3150 8060 3150 337 | Connection ~ 8060 3150 338 | Wire Wire Line 339 | 8060 3150 8060 3250 340 | Wire Wire Line 341 | 8205 3250 8060 3250 342 | Connection ~ 8060 3250 343 | Wire Wire Line 344 | 8060 3250 8060 3350 345 | Wire Wire Line 346 | 8205 3350 8060 3350 347 | Connection ~ 8060 3350 348 | Wire Wire Line 349 | 8060 3350 8060 3555 350 | $Comp 351 | L power:GND #PWR012 352 | U 1 1 5DC3EA54 353 | P 8060 3555 354 | F 0 "#PWR012" H 8060 3305 50 0001 C CNN 355 | F 1 "GND" H 8065 3382 50 0000 C CNN 356 | F 2 "" H 8060 3555 50 0001 C CNN 357 | F 3 "" H 8060 3555 50 0001 C CNN 358 | 1 8060 3555 359 | 1 0 0 -1 360 | $EndComp 361 | $Comp 362 | L power:+3V3 #PWR01 363 | U 1 1 5DC3F49A 364 | P 8070 955 365 | F 0 "#PWR01" H 8070 805 50 0001 C CNN 366 | F 1 "+3V3" H 8085 1128 50 0000 C CNN 367 | F 2 "" H 8070 955 50 0001 C CNN 368 | F 3 "" H 8070 955 50 0001 C CNN 369 | 1 8070 955 370 | 1 0 0 -1 371 | $EndComp 372 | Text Label 8130 1300 2 50 ~ 0 373 | RST 374 | Text Label 9760 2800 0 50 ~ 0 375 | SCL 376 | Text Label 9760 2700 0 50 ~ 0 377 | SDA 378 | Wire Wire Line 379 | 9655 2700 9760 2700 380 | Wire Wire Line 381 | 9655 2800 9760 2800 382 | Wire Wire Line 383 | 9655 3000 9765 3000 384 | Wire Wire Line 385 | 9655 3100 9765 3100 386 | Wire Wire Line 387 | 9655 3200 9770 3200 388 | Wire Wire Line 389 | 9655 3300 9775 3300 390 | Wire Wire Line 391 | 8205 1900 8080 1900 392 | Wire Wire Line 393 | 8205 2000 8080 2000 394 | Text Label 9765 1200 0 50 ~ 0 395 | TX 396 | Text Label 9765 1100 0 50 ~ 0 397 | RX 398 | Text Label 9765 3000 0 50 ~ 0 399 | SWCLK 400 | Text Label 9765 3100 0 50 ~ 0 401 | SWDIO 402 | Text Label 9780 2050 0 50 ~ 0 403 | MOSI 404 | Text Label 9775 1400 0 50 ~ 0 405 | MISO 406 | Wire Wire Line 407 | 9655 2050 9780 2050 408 | Wire Wire Line 409 | 9655 2250 9780 2250 410 | Wire Wire Line 411 | 9655 1500 9775 1500 412 | Wire Wire Line 413 | 9655 1400 9775 1400 414 | Text Label 8080 2000 0 50 ~ 0 415 | A0 416 | Text Label 8080 1900 0 50 ~ 0 417 | A1 418 | Wire Wire Line 419 | 8205 1700 8085 1700 420 | Wire Wire Line 421 | 8205 1800 8080 1800 422 | Text Label 8085 1700 0 50 ~ 0 423 | A3 424 | Text Label 8080 1800 0 50 ~ 0 425 | A2 426 | Text Label 9770 3200 0 50 ~ 0 427 | A4 428 | Text Label 8085 1600 0 50 ~ 0 429 | D5 430 | Text Label 8090 2100 0 50 ~ 0 431 | D6 432 | Text Label 9750 2600 0 50 ~ 0 433 | D9 434 | Text Label 9745 2500 0 50 ~ 0 435 | D10 436 | Text Label 9775 3300 0 50 ~ 0 437 | D11 438 | Text Label 9770 1300 0 50 ~ 0 439 | D12 440 | Text Label 9775 1500 0 50 ~ 0 441 | D13 442 | Wire Wire Line 443 | 8205 1600 8085 1600 444 | Wire Wire Line 445 | 9655 2150 9775 2150 446 | Wire Wire Line 447 | 9655 1300 9770 1300 448 | Wire Wire Line 449 | 9655 1200 9765 1200 450 | Wire Wire Line 451 | 9655 1100 9765 1100 452 | Wire Wire Line 453 | 8205 1500 8080 1500 454 | Text Label 8080 1500 0 50 ~ 0 455 | ANT 456 | Wire Wire Line 457 | 8205 2100 8090 2100 458 | Wire Wire Line 459 | 9655 2600 9750 2600 460 | Wire Wire Line 461 | 9655 2500 9745 2500 462 | Wire Wire Line 463 | 1440 1300 1600 1300 464 | Wire Wire Line 465 | 1440 1400 1600 1400 466 | NoConn ~ 1440 1500 467 | Text Label 1600 1300 0 50 ~ 0 468 | D+ 469 | Text Label 1600 1400 0 50 ~ 0 470 | D- 471 | $Comp 472 | L Bast_WAN-rescue:AP2112K-3.3TRG1-electroniccats U2 473 | U 1 1 5DC7B9FC 474 | P 2425 4405 475 | F 0 "U2" H 2170 4745 50 0000 C CNN 476 | F 1 "AP2112K-3.3TRG1" H 2425 4110 50 0000 C CNN 477 | F 2 "Package_TO_SOT_SMD:TSOT-23-5" H 2425 4405 50 0001 L BNN 478 | F 3 "SOT-753 Diodes Inc." H 2425 4405 50 0001 L BNN 479 | F 4 "AP2112K-3.3TRG1" H 0 0 50 0001 C CNN "manf#" 480 | 1 2425 4405 481 | 1 0 0 -1 482 | $EndComp 483 | $Comp 484 | L Battery_Management:MCP73831-3-OT U5 485 | U 1 1 5DC7CD09 486 | P 1440 6675 487 | F 0 "U5" H 1705 6925 50 0000 C CNN 488 | F 1 "MCP73831-3-OT" H 1030 6940 50 0000 C CNN 489 | F 2 "Package_TO_SOT_SMD:SOT-23-5" H 1490 6425 50 0001 L CIN 490 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf" H 1290 6625 50 0001 C CNN 491 | F 4 "MCP73831T-5ACI/OT" H 0 0 50 0001 C CNN "manf#" 492 | 1 1440 6675 493 | 1 0 0 -1 494 | $EndComp 495 | $Comp 496 | L Device:Antenna_Shield AE1 497 | U 1 1 5DC7DE85 498 | P 6010 1245 499 | F 0 "AE1" H 6154 1284 50 0000 L CNN 500 | F 1 "Antenna" H 6154 1193 50 0000 L CNN 501 | F 2 "bast-wan:SMA_EDGE" H 6010 1345 50 0001 C CNN 502 | F 3 "~" H 6010 1345 50 0001 C CNN 503 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 504 | 1 6010 1245 505 | 1 0 0 -1 506 | $EndComp 507 | $Comp 508 | L Device:C_Small C2 509 | U 1 1 5DC7F1DD 510 | P 6295 1645 511 | F 0 "C2" V 6250 1730 50 0000 C CNN 512 | F 1 "47pF" V 6350 1765 50 0000 C CNN 513 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6295 1645 50 0001 C CNN 514 | F 3 "~" H 6295 1645 50 0001 C CNN 515 | F 4 "0603CG470J500NT" H 0 0 50 0001 C CNN "manf#" 516 | 1 6295 1645 517 | 0 1 1 0 518 | $EndComp 519 | Wire Wire Line 520 | 6010 1445 6010 1645 521 | Wire Wire Line 522 | 6110 1445 6110 1490 523 | $Comp 524 | L power:GND #PWR07 525 | U 1 1 5DCA13AF 526 | P 6110 1490 527 | F 0 "#PWR07" H 6110 1240 50 0001 C CNN 528 | F 1 "GND" H 6225 1465 50 0000 C CNN 529 | F 2 "" H 6110 1490 50 0001 C CNN 530 | F 3 "" H 6110 1490 50 0001 C CNN 531 | 1 6110 1490 532 | 1 0 0 -1 533 | $EndComp 534 | Text Label 6965 1645 0 50 ~ 0 535 | ANT 536 | Wire Wire Line 537 | 1470 4205 1470 4145 538 | Wire Wire Line 539 | 2925 4205 3020 4205 540 | Wire Wire Line 541 | 3375 4205 3375 4150 542 | Wire Wire Line 543 | 2925 4605 2965 4605 544 | Wire Wire Line 545 | 2965 4605 2965 4710 546 | $Comp 547 | L power:GND #PWR022 548 | U 1 1 5DCBABFE 549 | P 2965 4710 550 | F 0 "#PWR022" H 2965 4460 50 0001 C CNN 551 | F 1 "GND" H 2970 4537 50 0000 C CNN 552 | F 2 "" H 2965 4710 50 0001 C CNN 553 | F 3 "" H 2965 4710 50 0001 C CNN 554 | 1 2965 4710 555 | 1 0 0 -1 556 | $EndComp 557 | $Comp 558 | L power:+3V3 #PWR015 559 | U 1 1 5DCBB33D 560 | P 3375 4150 561 | F 0 "#PWR015" H 3375 4000 50 0001 C CNN 562 | F 1 "+3V3" H 3390 4323 50 0000 C CNN 563 | F 2 "" H 3375 4150 50 0001 C CNN 564 | F 3 "" H 3375 4150 50 0001 C CNN 565 | 1 3375 4150 566 | 1 0 0 -1 567 | $EndComp 568 | $Comp 569 | L power:+BATT #PWR013 570 | U 1 1 5DCBC5E5 571 | P 1470 3675 572 | F 0 "#PWR013" H 1470 3525 50 0001 C CNN 573 | F 1 "+BATT" H 1475 3820 50 0000 C CNN 574 | F 2 "" H 1470 3675 50 0001 C CNN 575 | F 3 "" H 1470 3675 50 0001 C CNN 576 | 1 1470 3675 577 | 1 0 0 -1 578 | $EndComp 579 | $Comp 580 | L Device:C_Small C3 581 | U 1 1 5DCC28BD 582 | P 1700 4345 583 | F 0 "C3" H 1560 4405 50 0000 L CNN 584 | F 1 "10uF" H 1485 4270 50 0000 L CNN 585 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1700 4345 50 0001 C CNN 586 | F 3 "~" H 1700 4345 50 0001 C CNN 587 | F 4 "GRM188R61C106MA73D" H 0 0 50 0001 C CNN "manf#" 588 | 1 1700 4345 589 | 1 0 0 -1 590 | $EndComp 591 | $Comp 592 | L Diode:MBR340 D2 593 | U 1 1 5DCC3391 594 | P 1270 4205 595 | F 0 "D2" V 1140 4310 50 0000 R CNN 596 | F 1 "MBR120" V 1250 4550 50 0000 R CNN 597 | F 2 "Diode_SMD:D_SOD-123" H 1270 4030 50 0001 C CNN 598 | F 3 "http://www.onsemi.com/pub_link/Collateral/MBR340-D.PDF" H 1270 4205 50 0001 C CNN 599 | F 4 "MBR120LSF" V 1270 4205 50 0001 C CNN "manf#" 600 | 1 1270 4205 601 | -1 0 0 1 602 | $EndComp 603 | Wire Wire Line 604 | 1700 4245 1700 4205 605 | Connection ~ 1700 4205 606 | Wire Wire Line 607 | 1700 4205 1470 4205 608 | Wire Wire Line 609 | 1700 4445 1700 4490 610 | $Comp 611 | L power:GND #PWR017 612 | U 1 1 5DCD70E9 613 | P 1700 4490 614 | F 0 "#PWR017" H 1700 4240 50 0001 C CNN 615 | F 1 "GND" H 1705 4317 50 0000 C CNN 616 | F 2 "" H 1700 4490 50 0001 C CNN 617 | F 3 "" H 1700 4490 50 0001 C CNN 618 | 1 1700 4490 619 | 1 0 0 -1 620 | $EndComp 621 | $Comp 622 | L Device:C_Small C4 623 | U 1 1 5DCD7972 624 | P 3020 4360 625 | F 0 "C4" H 3112 4406 50 0000 L CNN 626 | F 1 "10uF" H 3112 4315 50 0000 L CNN 627 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 3020 4360 50 0001 C CNN 628 | F 3 "~" H 3020 4360 50 0001 C CNN 629 | F 4 "GRM188R61C106MA73D" H 0 0 50 0001 C CNN "manf#" 630 | 1 3020 4360 631 | 1 0 0 -1 632 | $EndComp 633 | $Comp 634 | L Device:C_Small C5 635 | U 1 1 5DCD8443 636 | P 2115 6675 637 | F 0 "C5" H 2207 6721 50 0000 L CNN 638 | F 1 "10uF" H 2207 6630 50 0000 L CNN 639 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 2115 6675 50 0001 C CNN 640 | F 3 "~" H 2115 6675 50 0001 C CNN 641 | F 4 "GRM188R61C106MA73D" H 0 0 50 0001 C CNN "manf#" 642 | 1 2115 6675 643 | 1 0 0 -1 644 | $EndComp 645 | Wire Wire Line 646 | 3020 4260 3020 4205 647 | Connection ~ 3020 4205 648 | Wire Wire Line 649 | 3020 4205 3375 4205 650 | Wire Wire Line 651 | 3020 4460 3020 4500 652 | $Comp 653 | L power:GND #PWR018 654 | U 1 1 5DCE21A1 655 | P 3020 4500 656 | F 0 "#PWR018" H 3020 4250 50 0001 C CNN 657 | F 1 "GND" H 3135 4405 50 0000 C CNN 658 | F 2 "" H 3020 4500 50 0001 C CNN 659 | F 3 "" H 3020 4500 50 0001 C CNN 660 | 1 3020 4500 661 | 1 0 0 -1 662 | $EndComp 663 | $Comp 664 | L power:VBUS #PWR02 665 | U 1 1 5D53EAFC 666 | P 1490 1050 667 | F 0 "#PWR02" H 1490 900 50 0001 C CNN 668 | F 1 "VBUS" H 1490 1200 50 0000 C CNN 669 | F 2 "" H 1490 1050 50 0001 C CNN 670 | F 3 "" H 1490 1050 50 0001 C CNN 671 | 1 1490 1050 672 | 1 0 0 -1 673 | $EndComp 674 | $Comp 675 | L power:VBUS #PWR014 676 | U 1 1 5DCE3476 677 | P 1120 3855 678 | F 0 "#PWR014" H 1120 3705 50 0001 C CNN 679 | F 1 "VBUS" H 1135 4028 50 0000 C CNN 680 | F 2 "" H 1120 3855 50 0001 C CNN 681 | F 3 "" H 1120 3855 50 0001 C CNN 682 | 1 1120 3855 683 | 1 0 0 -1 684 | $EndComp 685 | Wire Wire Line 686 | 1470 4205 1420 4205 687 | Connection ~ 1470 4205 688 | Wire Wire Line 689 | 1120 4205 1120 3945 690 | $Comp 691 | L Device:R_Small R2 692 | U 1 1 5DCF8E25 693 | P 1120 4365 694 | F 0 "R2" H 860 4450 50 0000 L CNN 695 | F 1 "100K" V 1045 4290 50 0000 L CNN 696 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1120 4365 50 0001 C CNN 697 | F 3 "~" H 1120 4365 50 0001 C CNN 698 | F 4 "RC0603FR-07100KL" H 0 0 50 0001 C CNN "manf#" 699 | 1 1120 4365 700 | 1 0 0 -1 701 | $EndComp 702 | Wire Wire Line 703 | 1120 4205 1120 4265 704 | Connection ~ 1120 4205 705 | Wire Wire Line 706 | 1120 4465 1120 4510 707 | $Comp 708 | L power:GND #PWR019 709 | U 1 1 5DD03D37 710 | P 1120 4510 711 | F 0 "#PWR019" H 1120 4260 50 0001 C CNN 712 | F 1 "GND" H 1125 4337 50 0000 C CNN 713 | F 2 "" H 1120 4510 50 0001 C CNN 714 | F 3 "" H 1120 4510 50 0001 C CNN 715 | 1 1120 4510 716 | 1 0 0 -1 717 | $EndComp 718 | $Comp 719 | L Bast_WAN-rescue:DMG2301L-Transistor_FET Q1 720 | U 1 1 5DD047C9 721 | P 1370 3945 722 | F 0 "Q1" H 1220 3990 50 0000 L CNN 723 | F 1 "DMG3415U-7" V 1580 3745 50 0000 L CNN 724 | F 2 "Package_TO_SOT_SMD:SOT-23" H 1570 3870 50 0001 L CIN 725 | F 3 "https://www.diodes.com/assets/Datasheets/DMG2301L.pdf" H 1370 3945 50 0001 L CNN 726 | F 4 "DMG3415UQ-7" H 0 0 50 0001 C CNN "manf#" 727 | 1 1370 3945 728 | 1 0 0 -1 729 | $EndComp 730 | Wire Wire Line 731 | 1170 3945 1120 3945 732 | Connection ~ 1120 3945 733 | Wire Wire Line 734 | 1120 3945 1120 3855 735 | Wire Wire Line 736 | 1470 3745 1470 3675 737 | Wire Wire Line 738 | 1440 6375 1440 6235 739 | Wire Wire Line 740 | 1440 6975 1440 7055 741 | $Comp 742 | L power:GND #PWR041 743 | U 1 1 5DD2C0FB 744 | P 1440 7055 745 | F 0 "#PWR041" H 1440 6805 50 0001 C CNN 746 | F 1 "GND" H 1445 6882 50 0000 C CNN 747 | F 2 "" H 1440 7055 50 0001 C CNN 748 | F 3 "" H 1440 7055 50 0001 C CNN 749 | 1 1440 7055 750 | 1 0 0 -1 751 | $EndComp 752 | $Comp 753 | L power:VBUS #PWR032 754 | U 1 1 5DD2DEF6 755 | P 1440 6235 756 | F 0 "#PWR032" H 1440 6085 50 0001 C CNN 757 | F 1 "VBUS" H 1455 6408 50 0000 C CNN 758 | F 2 "" H 1440 6235 50 0001 C CNN 759 | F 3 "" H 1440 6235 50 0001 C CNN 760 | 1 1440 6235 761 | 1 0 0 -1 762 | $EndComp 763 | Wire Wire Line 764 | 1840 6575 2115 6575 765 | Wire Wire Line 766 | 1840 6775 1890 6775 767 | Wire Wire Line 768 | 1890 6775 1890 6890 769 | Wire Wire Line 770 | 2115 6575 2285 6575 771 | Wire Wire Line 772 | 2285 6575 2285 6565 773 | Connection ~ 2115 6575 774 | $Comp 775 | L power:+BATT #PWR035 776 | U 1 1 5DD3E86D 777 | P 2285 6565 778 | F 0 "#PWR035" H 2285 6415 50 0001 C CNN 779 | F 1 "+BATT" H 2300 6738 50 0000 C CNN 780 | F 2 "" H 2285 6565 50 0001 C CNN 781 | F 3 "" H 2285 6565 50 0001 C CNN 782 | 1 2285 6565 783 | 1 0 0 -1 784 | $EndComp 785 | Wire Wire Line 786 | 2115 6775 2115 6825 787 | $Comp 788 | L power:GND #PWR036 789 | U 1 1 5DD44406 790 | P 2115 6825 791 | F 0 "#PWR036" H 2115 6575 50 0001 C CNN 792 | F 1 "GND" H 2215 6720 50 0000 C CNN 793 | F 2 "" H 2115 6825 50 0001 C CNN 794 | F 3 "" H 2115 6825 50 0001 C CNN 795 | 1 2115 6825 796 | 1 0 0 -1 797 | $EndComp 798 | $Comp 799 | L Device:R_Small R8 800 | U 1 1 5DD44C55 801 | P 1890 6990 802 | F 0 "R8" H 1949 7036 50 0000 L CNN 803 | F 1 "330" H 1949 6945 50 0000 L CNN 804 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1890 6990 50 0001 C CNN 805 | F 3 "~" H 1890 6990 50 0001 C CNN 806 | F 4 "RC0603FR-07330RL" H 0 0 50 0001 C CNN "manf#" 807 | 1 1890 6990 808 | 1 0 0 -1 809 | $EndComp 810 | $Comp 811 | L Device:LED D4 812 | U 1 1 5DD4566A 813 | P 1890 7280 814 | F 0 "D4" V 1837 7358 50 0000 L CNN 815 | F 1 "CHR" V 1928 7358 50 0000 L CNN 816 | F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1890 7280 50 0001 C CNN 817 | F 3 "~" H 1890 7280 50 0001 C CNN 818 | F 4 "NCD0805G1" H 0 0 50 0001 C CNN "manf#" 819 | 1 1890 7280 820 | 0 1 1 0 821 | $EndComp 822 | Wire Wire Line 823 | 1890 7130 1890 7090 824 | Wire Wire Line 825 | 1890 7430 1890 7480 826 | $Comp 827 | L power:VBUS #PWR042 828 | U 1 1 5DD51617 829 | P 1700 7450 830 | F 0 "#PWR042" H 1700 7300 50 0001 C CNN 831 | F 1 "VBUS" H 1715 7623 50 0000 C CNN 832 | F 2 "" H 1700 7450 50 0001 C CNN 833 | F 3 "" H 1700 7450 50 0001 C CNN 834 | 1 1700 7450 835 | 1 0 0 -1 836 | $EndComp 837 | Wire Wire Line 838 | 1890 7480 1700 7480 839 | Wire Wire Line 840 | 1700 7480 1700 7450 841 | Wire Wire Line 842 | 1040 6775 945 6775 843 | $Comp 844 | L Device:R_Small R6 845 | U 1 1 5DD5D374 846 | P 845 6775 847 | F 0 "R6" V 649 6775 50 0000 C CNN 848 | F 1 "1K" V 740 6775 50 0000 C CNN 849 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 845 6775 50 0001 C CNN 850 | F 3 "~" H 845 6775 50 0001 C CNN 851 | F 4 "RC0603JR-071KL" H 0 0 50 0001 C CNN "manf#" 852 | 1 845 6775 853 | 0 1 1 0 854 | $EndComp 855 | Wire Wire Line 856 | 745 6775 675 6775 857 | Wire Wire Line 858 | 675 6775 675 6910 859 | $Comp 860 | L power:GND #PWR038 861 | U 1 1 5DD642F1 862 | P 675 6910 863 | F 0 "#PWR038" H 675 6660 50 0001 C CNN 864 | F 1 "GND" H 680 6737 50 0000 C CNN 865 | F 2 "" H 675 6910 50 0001 C CNN 866 | F 3 "" H 675 6910 50 0001 C CNN 867 | 1 675 6910 868 | 1 0 0 -1 869 | $EndComp 870 | Wire Notes Line 871 | 2365 490 2365 3100 872 | Wire Notes Line 873 | 2365 3100 470 3100 874 | Wire Notes Line 875 | 2355 3120 5190 3120 876 | Wire Notes Line 877 | 5190 3120 5190 470 878 | Text Notes 3180 695 0 79 ~ 0 879 | FEATHER PINOUT 880 | Text Notes 1135 635 0 79 ~ 0 881 | USB 882 | Text Notes 1050 5705 0 79 ~ 0 883 | LIPO CHARGING 884 | Text Notes 1910 3395 0 79 ~ 0 885 | POWER AND FILTERING 886 | Wire Notes Line 887 | 11195 3805 5180 3805 888 | Text Notes 7475 655 0 79 ~ 0 889 | LORA MODULE 890 | Wire Notes Line 891 | 5180 3140 5180 7785 892 | Wire Notes Line 893 | 5170 5335 485 5335 894 | Wire Notes Line 895 | 6975 6555 6975 3805 896 | $Comp 897 | L Device:R_Small R3 898 | U 1 1 5DDF3936 899 | P 6035 4765 900 | F 0 "R3" H 6094 4811 50 0000 L CNN 901 | F 1 "1M" H 6094 4720 50 0000 L CNN 902 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6035 4765 50 0001 C CNN 903 | F 3 "~" H 6035 4765 50 0001 C CNN 904 | F 4 "RC0603JR-071ML" H 0 0 50 0001 C CNN "manf#" 905 | 1 6035 4765 906 | 1 0 0 -1 907 | $EndComp 908 | $Comp 909 | L Device:R_Small R4 910 | U 1 1 5DDF421C 911 | P 6035 5130 912 | F 0 "R4" H 6094 5176 50 0000 L CNN 913 | F 1 "1.5M" H 6094 5085 50 0000 L CNN 914 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6035 5130 50 0001 C CNN 915 | F 3 "~" H 6035 5130 50 0001 C CNN 916 | F 4 "RC0603JR-071M5L" H 0 0 50 0001 C CNN "manf#" 917 | 1 6035 5130 918 | 1 0 0 -1 919 | $EndComp 920 | Wire Wire Line 921 | 6035 5030 6035 4955 922 | Wire Wire Line 923 | 6035 4665 6035 4550 924 | Wire Wire Line 925 | 6035 5230 6035 5300 926 | Wire Wire Line 927 | 6035 4955 5865 4955 928 | Connection ~ 6035 4955 929 | Wire Wire Line 930 | 6035 4955 6035 4865 931 | Text Label 5865 4955 2 50 ~ 0 932 | A0 933 | $Comp 934 | L power:+BATT #PWR020 935 | U 1 1 5DE0D95C 936 | P 6035 4550 937 | F 0 "#PWR020" H 6035 4400 50 0001 C CNN 938 | F 1 "+BATT" H 6050 4723 50 0000 C CNN 939 | F 2 "" H 6035 4550 50 0001 C CNN 940 | F 3 "" H 6035 4550 50 0001 C CNN 941 | 1 6035 4550 942 | 1 0 0 -1 943 | $EndComp 944 | $Comp 945 | L power:GND #PWR026 946 | U 1 1 5DE0E513 947 | P 6035 5300 948 | F 0 "#PWR026" H 6035 5050 50 0001 C CNN 949 | F 1 "GND" H 6040 5127 50 0000 C CNN 950 | F 2 "" H 6035 5300 50 0001 C CNN 951 | F 3 "" H 6035 5300 50 0001 C CNN 952 | 1 6035 5300 953 | 1 0 0 -1 954 | $EndComp 955 | Text Notes 5580 4045 0 79 ~ 0 956 | LIPO MONITORING 957 | Text Label 10085 4905 0 50 ~ 0 958 | SWDIO 959 | Text Label 10085 5005 0 50 ~ 0 960 | SWCLK 961 | $Comp 962 | L power:GND #PWR025 963 | U 1 1 5DE306F1 964 | P 10415 5220 965 | F 0 "#PWR025" H 10415 4970 50 0001 C CNN 966 | F 1 "GND" H 10420 5047 50 0000 C CNN 967 | F 2 "" H 10415 5220 50 0001 C CNN 968 | F 3 "" H 10415 5220 50 0001 C CNN 969 | 1 10415 5220 970 | 1 0 0 -1 971 | $EndComp 972 | $Comp 973 | L power:+3V3 #PWR021 974 | U 1 1 5DE311FD 975 | P 10415 4705 976 | F 0 "#PWR021" H 10415 4555 50 0001 C CNN 977 | F 1 "+3V3" H 10430 4878 50 0000 C CNN 978 | F 2 "" H 10415 4705 50 0001 C CNN 979 | F 3 "" H 10415 4705 50 0001 C CNN 980 | 1 10415 4705 981 | 1 0 0 -1 982 | $EndComp 983 | Wire Wire Line 984 | 8070 1100 7660 1100 985 | Wire Wire Line 986 | 7660 1100 7660 1125 987 | Connection ~ 8070 1100 988 | $Comp 989 | L Device:C_Small C1 990 | U 1 1 5DE8000A 991 | P 7660 1225 992 | F 0 "C1" H 7545 1290 50 0000 L CNN 993 | F 1 "0.1uF" H 7395 1160 50 0000 L CNN 994 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7660 1225 50 0001 C CNN 995 | F 3 "~" H 7660 1225 50 0001 C CNN 996 | F 4 "0603YG104ZAT2A" H 0 0 50 0001 C CNN "manf#" 997 | 1 7660 1225 998 | 1 0 0 -1 999 | $EndComp 1000 | Wire Wire Line 1001 | 7660 1325 7660 1370 1002 | $Comp 1003 | L power:GND #PWR06 1004 | U 1 1 5DE88565 1005 | P 7660 1370 1006 | F 0 "#PWR06" H 7660 1120 50 0001 C CNN 1007 | F 1 "GND" H 7665 1197 50 0000 C CNN 1008 | F 2 "" H 7660 1370 50 0001 C CNN 1009 | F 3 "" H 7660 1370 50 0001 C CNN 1010 | 1 7660 1370 1011 | 1 0 0 -1 1012 | $EndComp 1013 | $Comp 1014 | L Switch:SW_Push SW1 1015 | U 1 1 5DE8948F 1016 | P 6030 6380 1017 | F 0 "SW1" H 6030 6665 50 0000 C CNN 1018 | F 1 "RST" H 6030 6574 50 0000 C CNN 1019 | F 2 "Button_Switch_SMD:SW_SPST_TL3342" H 6030 6580 50 0001 C CNN 1020 | F 3 "~" H 6030 6580 50 0001 C CNN 1021 | F 4 "TS-1187A-C-C-B" H 0 0 50 0001 C CNN "manf#" 1022 | 1 6030 6380 1023 | 1 0 0 -1 1024 | $EndComp 1025 | Wire Wire Line 1026 | 6230 6380 6355 6380 1027 | Wire Wire Line 1028 | 5830 6380 5740 6380 1029 | Wire Wire Line 1030 | 5740 6380 5740 6425 1031 | $Comp 1032 | L power:GND #PWR033 1033 | U 1 1 5DE99C1B 1034 | P 5740 6425 1035 | F 0 "#PWR033" H 5740 6175 50 0001 C CNN 1036 | F 1 "GND" H 5745 6252 50 0000 C CNN 1037 | F 2 "" H 5740 6425 50 0001 C CNN 1038 | F 3 "" H 5740 6425 50 0001 C CNN 1039 | 1 5740 6425 1040 | 1 0 0 -1 1041 | $EndComp 1042 | Text Label 6355 6380 0 50 ~ 0 1043 | RST 1044 | Wire Notes Line 1045 | 6975 5670 5170 5670 1046 | $Comp 1047 | L Device:LED D5 1048 | U 1 1 5DED10AB 1049 | P 3920 6545 1050 | F 0 "D5" H 3913 6761 50 0000 C CNN 1051 | F 1 "D13" H 3913 6670 50 0000 C CNN 1052 | F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 3920 6545 50 0001 C CNN 1053 | F 3 "~" H 3920 6545 50 0001 C CNN 1054 | F 4 "BL-HB335A-TRE" H -2195 -1050 50 0001 C CNN "manf#" 1055 | 1 3920 6545 1056 | 1 0 0 -1 1057 | $EndComp 1058 | $Comp 1059 | L Device:R_Small R9 1060 | U 1 1 5DED10B1 1061 | P 3575 6545 1062 | F 0 "R9" V 3379 6545 50 0000 C CNN 1063 | F 1 "330" V 3470 6545 50 0000 C CNN 1064 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 3575 6545 50 0001 C CNN 1065 | F 3 "~" H 3575 6545 50 0001 C CNN 1066 | F 4 "RC0603FR-07330RL" H -2195 -1050 50 0001 C CNN "manf#" 1067 | 1 3575 6545 1068 | 0 1 1 0 1069 | $EndComp 1070 | Wire Wire Line 1071 | 4070 6545 4210 6545 1072 | Wire Wire Line 1073 | 3770 6545 3675 6545 1074 | Wire Wire Line 1075 | 3475 6545 3405 6545 1076 | Wire Wire Line 1077 | 3405 6545 3405 6600 1078 | $Comp 1079 | L power:GND #PWR043 1080 | U 1 1 5DED10BC 1081 | P 3405 6600 1082 | F 0 "#PWR043" H 3405 6350 50 0001 C CNN 1083 | F 1 "GND" H 3410 6427 50 0000 C CNN 1084 | F 2 "" H 3405 6600 50 0001 C CNN 1085 | F 3 "" H 3405 6600 50 0001 C CNN 1086 | 1 3405 6600 1087 | 1 0 0 -1 1088 | $EndComp 1089 | Text Label 4210 6545 0 79 ~ 0 1090 | D13 1091 | $Comp 1092 | L Device:R_Small R1 1093 | U 1 1 5DEE52DA 1094 | P 1845 4305 1095 | F 0 "R1" H 1904 4351 50 0000 L CNN 1096 | F 1 "100K" H 1904 4260 50 0000 L CNN 1097 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1845 4305 50 0001 C CNN 1098 | F 3 "~" H 1845 4305 50 0001 C CNN 1099 | F 4 "RC0603FR-07100KL" H 0 0 50 0001 C CNN "manf#" 1100 | 1 1845 4305 1101 | 1 0 0 -1 1102 | $EndComp 1103 | Wire Wire Line 1104 | 1700 4205 1845 4205 1105 | Connection ~ 1845 4205 1106 | Wire Wire Line 1107 | 1845 4205 1925 4205 1108 | Wire Wire Line 1109 | 1870 4405 1870 4440 1110 | Wire Wire Line 1111 | 1870 4440 1845 4440 1112 | Wire Wire Line 1113 | 1845 4440 1845 4405 1114 | Wire Wire Line 1115 | 1870 4405 1925 4405 1116 | Text Label 1855 4440 3 50 ~ 0 1117 | EN 1118 | Wire Notes Line 1119 | 2635 5345 2635 7795 1120 | Wire Notes Line 1121 | 2635 7795 2630 7795 1122 | $Comp 1123 | L Bast_WAN-rescue:ATECC608A-SSHDA-Security U3 1124 | U 1 1 5DF09E98 1125 | P 7355 5150 1126 | F 0 "U3" H 7125 5196 50 0000 R CNN 1127 | F 1 "ATECC608A-TNGLORA" H 8195 4890 50 0000 R CNN 1128 | F 2 "Package_DFN_QFN:DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm" H 7355 5150 50 0001 C CNN 1129 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/ATECC608A-CryptoAuthentication-Device-Summary-Data-Sheet-DS40001977B.pdf" H 7505 5400 50 0001 C CNN 1130 | F 4 "ATECC608A-MAHCZ-T" H -640 -35 50 0001 C CNN "manf#" 1131 | 1 7355 5150 1132 | 1 0 0 -1 1133 | $EndComp 1134 | Wire Notes Line 1135 | 9055 3805 9055 6535 1136 | Wire Wire Line 1137 | 7355 5450 7355 5525 1138 | Wire Wire Line 1139 | 7355 4850 7355 4765 1140 | Text Label 8025 5050 0 50 ~ 0 1141 | SDA 1142 | Text Label 8040 5250 0 50 ~ 0 1143 | SCL 1144 | $Comp 1145 | L power:+3V3 #PWR024 1146 | U 1 1 5DF927C3 1147 | P 7355 4765 1148 | F 0 "#PWR024" H 7355 4615 50 0001 C CNN 1149 | F 1 "+3V3" H 7370 4938 50 0000 C CNN 1150 | F 2 "" H 7355 4765 50 0001 C CNN 1151 | F 3 "" H 7355 4765 50 0001 C CNN 1152 | 1 7355 4765 1153 | 1 0 0 -1 1154 | $EndComp 1155 | $Comp 1156 | L power:GND #PWR028 1157 | U 1 1 5DF936AC 1158 | P 7355 5525 1159 | F 0 "#PWR028" H 7355 5275 50 0001 C CNN 1160 | F 1 "GND" H 7360 5352 50 0000 C CNN 1161 | F 2 "" H 7355 5525 50 0001 C CNN 1162 | F 3 "" H 7355 5525 50 0001 C CNN 1163 | 1 7355 5525 1164 | 1 0 0 -1 1165 | $EndComp 1166 | Wire Wire Line 1167 | 3085 2795 2985 2795 1168 | Wire Wire Line 1169 | 2745 1595 2745 1605 1170 | Wire Wire Line 1171 | 2745 1595 2985 1595 1172 | $Comp 1173 | L power:GND #PWR011 1174 | U 1 1 5DFD0DFA 1175 | P 2985 2795 1176 | F 0 "#PWR011" H 2985 2545 50 0001 C CNN 1177 | F 1 "GND" H 2990 2622 50 0000 C CNN 1178 | F 2 "" H 2985 2795 50 0001 C CNN 1179 | F 3 "" H 2985 2795 50 0001 C CNN 1180 | 1 2985 2795 1181 | 1 0 0 -1 1182 | $EndComp 1183 | Text Notes 5200 5810 0 79 ~ 0 1184 | Reset 1185 | Text Label 9780 2250 0 50 ~ 0 1186 | SCK 1187 | Wire Wire Line 1188 | 6010 1645 6195 1645 1189 | $Comp 1190 | L Device:R_Small R10 1191 | U 1 1 5DE7042C 1192 | P 7740 4875 1193 | F 0 "R10" H 7770 4905 50 0000 L CNN 1194 | F 1 "10K" H 7775 4845 50 0000 L CNN 1195 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7740 4875 50 0001 C CNN 1196 | F 3 "~" H 7740 4875 50 0001 C CNN 1197 | F 4 "RC0603JR-0710KL" H 7740 4875 50 0001 C CNN "manf#" 1198 | 1 7740 4875 1199 | 1 0 0 -1 1200 | $EndComp 1201 | $Comp 1202 | L Device:R_Small R11 1203 | U 1 1 5DE710D8 1204 | P 7960 4870 1205 | F 0 "R11" H 8000 4895 50 0000 L CNN 1206 | F 1 "10K" H 8000 4835 50 0000 L CNN 1207 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7960 4870 50 0001 C CNN 1208 | F 3 "~" H 7960 4870 50 0001 C CNN 1209 | F 4 "RC0603JR-0710KL" H 7960 4870 50 0001 C CNN "manf#" 1210 | 1 7960 4870 1211 | 1 0 0 -1 1212 | $EndComp 1213 | Wire Wire Line 1214 | 7655 5050 7960 5050 1215 | Wire Wire Line 1216 | 7655 5250 7740 5250 1217 | Wire Wire Line 1218 | 7740 4975 7740 5250 1219 | Connection ~ 7740 5250 1220 | Wire Wire Line 1221 | 7740 5250 8040 5250 1222 | Wire Wire Line 1223 | 7960 4970 7960 5050 1224 | Connection ~ 7960 5050 1225 | Wire Wire Line 1226 | 7960 5050 8025 5050 1227 | Wire Wire Line 1228 | 7960 4770 7960 4725 1229 | Wire Wire Line 1230 | 7960 4725 7855 4725 1231 | Wire Wire Line 1232 | 7740 4725 7740 4775 1233 | Wire Wire Line 1234 | 7855 4725 7855 4675 1235 | Connection ~ 7855 4725 1236 | Wire Wire Line 1237 | 7855 4725 7740 4725 1238 | $Comp 1239 | L power:+3V3 #PWR0101 1240 | U 1 1 5DEBCB35 1241 | P 7855 4675 1242 | F 0 "#PWR0101" H 7855 4525 50 0001 C CNN 1243 | F 1 "+3V3" H 7870 4848 50 0000 C CNN 1244 | F 2 "" H 7855 4675 50 0001 C CNN 1245 | F 3 "" H 7855 4675 50 0001 C CNN 1246 | 1 7855 4675 1247 | 1 0 0 -1 1248 | $EndComp 1249 | Wire Wire Line 1250 | 2985 1495 2985 1595 1251 | Connection ~ 2985 1595 1252 | Wire Wire Line 1253 | 2985 1595 3085 1595 1254 | $Comp 1255 | L Device:D_TVS_ALT D1 1256 | U 1 1 5E033E5A 1257 | P 6615 1880 1258 | F 0 "D1" V 6569 1959 50 0000 L CNN 1259 | F 1 "PGB1010402KR" V 6660 1959 50 0000 L CNN 1260 | F 2 "Inductor_SMD:L_0402_1005Metric" H 6615 1880 50 0001 C CNN 1261 | F 3 "~" H 6615 1880 50 0001 C CNN 1262 | F 4 "PGB1010402KR" V 6615 1880 50 0001 C CNN "manf#" 1263 | 1 6615 1880 1264 | 0 1 1 0 1265 | $EndComp 1266 | Wire Wire Line 1267 | 6395 1645 6615 1645 1268 | Wire Wire Line 1269 | 6615 1730 6615 1645 1270 | Connection ~ 6615 1645 1271 | Wire Wire Line 1272 | 6615 1645 6965 1645 1273 | $Comp 1274 | L power:GND #PWR010 1275 | U 1 1 5E04B598 1276 | P 6615 2100 1277 | F 0 "#PWR010" H 6615 1850 50 0001 C CNN 1278 | F 1 "GND" H 6730 2075 50 0000 C CNN 1279 | F 2 "" H 6615 2100 50 0001 C CNN 1280 | F 3 "" H 6615 2100 50 0001 C CNN 1281 | 1 6615 2100 1282 | 1 0 0 -1 1283 | $EndComp 1284 | Wire Wire Line 1285 | 6615 2030 6615 2100 1286 | Wire Wire Line 1287 | 10415 5220 10415 5105 1288 | Wire Wire Line 1289 | 10415 5105 10085 5105 1290 | Wire Wire Line 1291 | 10415 4705 10415 4805 1292 | Wire Wire Line 1293 | 10415 4805 10085 4805 1294 | $Comp 1295 | L Connector:Conn_01x04_Male J5 1296 | U 1 1 5E1A06D2 1297 | P 9885 4905 1298 | F 0 "J5" H 9993 5186 50 0000 C CNN 1299 | F 1 "SWD" H 9993 5095 50 0000 C CNN 1300 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 9885 4905 50 0001 C CNN 1301 | F 3 "~" H 9885 4905 50 0001 C CNN 1302 | 1 9885 4905 1303 | 1 0 0 -1 1304 | $EndComp 1305 | Text Notes 2690 5500 0 79 ~ 0 1306 | LED 1307 | Text Label 9775 2150 0 50 ~ 0 1308 | D3 1309 | Text Label 2985 2195 2 50 ~ 0 1310 | D3 1311 | $EndSCHEMATC 1312 | -------------------------------------------------------------------------------- /Hardware/_autosave-Bast_WAN.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 5 2 | EELAYER 36 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "Bast WAN" 8 | Date "2020-09-11" 9 | Rev "2.0v" 10 | Comp "Electronic Cats" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "Eduardo Contreras" 14 | Comment4 "Andres Sabas" 15 | Comment5 "" 16 | Comment6 "" 17 | Comment7 "" 18 | Comment8 "" 19 | Comment9 "" 20 | $EndDescr 21 | Connection ~ 1090 1750 22 | Connection ~ 1120 3945 23 | Connection ~ 1120 4205 24 | Connection ~ 1470 4205 25 | Connection ~ 1700 4205 26 | Connection ~ 1845 4205 27 | Connection ~ 2115 6575 28 | Connection ~ 2985 1595 29 | Connection ~ 3020 4205 30 | Connection ~ 6035 4955 31 | Connection ~ 6615 1645 32 | Connection ~ 7740 5250 33 | Connection ~ 7855 4725 34 | Connection ~ 7960 5050 35 | Connection ~ 8060 2350 36 | Connection ~ 8060 2450 37 | Connection ~ 8060 2550 38 | Connection ~ 8060 2650 39 | Connection ~ 8060 2750 40 | Connection ~ 8060 2850 41 | Connection ~ 8060 2950 42 | Connection ~ 8060 3050 43 | Connection ~ 8060 3150 44 | Connection ~ 8060 3250 45 | Connection ~ 8060 3350 46 | Connection ~ 8070 1000 47 | Connection ~ 8070 1100 48 | NoConn ~ 1440 1500 49 | Wire Wire Line 50 | 675 6775 675 6910 51 | Wire Wire Line 52 | 745 6775 675 6775 53 | Wire Wire Line 54 | 1040 1750 1040 1700 55 | Wire Wire Line 56 | 1040 6775 945 6775 57 | Wire Wire Line 58 | 1090 1750 1040 1750 59 | Wire Wire Line 60 | 1090 1750 1090 1800 61 | Wire Wire Line 62 | 1120 3945 1120 3855 63 | Wire Wire Line 64 | 1120 4205 1120 3945 65 | Wire Wire Line 66 | 1120 4205 1120 4265 67 | Wire Wire Line 68 | 1120 4465 1120 4510 69 | Wire Wire Line 70 | 1140 1700 1140 1750 71 | Wire Wire Line 72 | 1140 1750 1090 1750 73 | Wire Wire Line 74 | 1170 3945 1120 3945 75 | Wire Wire Line 76 | 1440 1100 1490 1100 77 | Wire Wire Line 78 | 1440 1300 1600 1300 79 | Wire Wire Line 80 | 1440 1400 1600 1400 81 | Wire Wire Line 82 | 1440 6375 1440 6235 83 | Wire Wire Line 84 | 1440 6975 1440 7055 85 | Wire Wire Line 86 | 1470 3745 1470 3675 87 | Wire Wire Line 88 | 1470 4205 1420 4205 89 | Wire Wire Line 90 | 1470 4205 1470 4145 91 | Wire Wire Line 92 | 1490 1100 1490 1050 93 | Wire Wire Line 94 | 1700 4205 1470 4205 95 | Wire Wire Line 96 | 1700 4205 1845 4205 97 | Wire Wire Line 98 | 1700 4245 1700 4205 99 | Wire Wire Line 100 | 1700 4445 1700 4490 101 | Wire Wire Line 102 | 1700 7480 1700 7450 103 | Wire Wire Line 104 | 1840 6575 2115 6575 105 | Wire Wire Line 106 | 1840 6775 1890 6775 107 | Wire Wire Line 108 | 1845 4205 1925 4205 109 | Wire Wire Line 110 | 1845 4440 1845 4405 111 | Wire Wire Line 112 | 1870 4405 1870 4440 113 | Wire Wire Line 114 | 1870 4405 1925 4405 115 | Wire Wire Line 116 | 1870 4440 1845 4440 117 | Wire Wire Line 118 | 1890 6775 1890 6890 119 | Wire Wire Line 120 | 1890 7130 1890 7090 121 | Wire Wire Line 122 | 1890 7430 1890 7480 123 | Wire Wire Line 124 | 1890 7480 1700 7480 125 | Wire Wire Line 126 | 2115 6575 2285 6575 127 | Wire Wire Line 128 | 2115 6775 2115 6825 129 | Wire Wire Line 130 | 2285 6575 2285 6565 131 | Wire Wire Line 132 | 2745 1595 2745 1605 133 | Wire Wire Line 134 | 2745 1595 2985 1595 135 | Wire Wire Line 136 | 2925 4205 3020 4205 137 | Wire Wire Line 138 | 2925 4605 2965 4605 139 | Wire Wire Line 140 | 2965 4605 2965 4710 141 | Wire Wire Line 142 | 2985 1495 2985 1595 143 | Wire Wire Line 144 | 2985 1595 3085 1595 145 | Wire Wire Line 146 | 3020 4205 3375 4205 147 | Wire Wire Line 148 | 3020 4260 3020 4205 149 | Wire Wire Line 150 | 3020 4460 3020 4500 151 | Wire Wire Line 152 | 3035 1195 3035 1395 153 | Wire Wire Line 154 | 3085 1295 2985 1295 155 | Wire Wire Line 156 | 3085 1395 3035 1395 157 | Wire Wire Line 158 | 3085 1495 2985 1495 159 | Wire Wire Line 160 | 3085 1695 2985 1695 161 | Wire Wire Line 162 | 3085 1795 2985 1795 163 | Wire Wire Line 164 | 3085 1895 2985 1895 165 | Wire Wire Line 166 | 3085 1995 2985 1995 167 | Wire Wire Line 168 | 3085 2095 2985 2095 169 | Wire Wire Line 170 | 3085 2195 2985 2195 171 | Wire Wire Line 172 | 3085 2295 2985 2295 173 | Wire Wire Line 174 | 3085 2395 2985 2395 175 | Wire Wire Line 176 | 3085 2495 2985 2495 177 | Wire Wire Line 178 | 3085 2595 2985 2595 179 | Wire Wire Line 180 | 3085 2695 2985 2695 181 | Wire Wire Line 182 | 3085 2795 2985 2795 183 | Wire Wire Line 184 | 3375 4205 3375 4150 185 | Wire Wire Line 186 | 3405 6545 3405 6600 187 | Wire Wire Line 188 | 3475 6545 3405 6545 189 | Wire Wire Line 190 | 3770 6545 3675 6545 191 | Wire Wire Line 192 | 4070 6545 4210 6545 193 | Wire Wire Line 194 | 4075 4240 4075 4190 195 | Wire Wire Line 196 | 4075 4740 4075 4790 197 | Wire Wire Line 198 | 4135 1295 4185 1295 199 | Wire Wire Line 200 | 4135 1395 4185 1395 201 | Wire Wire Line 202 | 4135 1495 4435 1495 203 | Wire Wire Line 204 | 4135 1595 4185 1595 205 | Wire Wire Line 206 | 4135 1695 4185 1695 207 | Wire Wire Line 208 | 4135 1795 4185 1795 209 | Wire Wire Line 210 | 4135 1895 4185 1895 211 | Wire Wire Line 212 | 4135 1995 4185 1995 213 | Wire Wire Line 214 | 4135 2095 4185 2095 215 | Wire Wire Line 216 | 4135 2195 4185 2195 217 | Wire Wire Line 218 | 4135 2295 4185 2295 219 | Wire Wire Line 220 | 4135 2395 4185 2395 221 | Wire Wire Line 222 | 4185 1295 4185 1245 223 | Wire Wire Line 224 | 4435 1245 4435 1495 225 | Wire Wire Line 226 | 5740 6380 5740 6425 227 | Wire Wire Line 228 | 5830 6380 5740 6380 229 | Wire Wire Line 230 | 6010 1445 6010 1645 231 | Wire Wire Line 232 | 6010 1645 6195 1645 233 | Wire Wire Line 234 | 6035 4665 6035 4550 235 | Wire Wire Line 236 | 6035 4955 5865 4955 237 | Wire Wire Line 238 | 6035 4955 6035 4865 239 | Wire Wire Line 240 | 6035 5030 6035 4955 241 | Wire Wire Line 242 | 6035 5230 6035 5300 243 | Wire Wire Line 244 | 6110 1445 6110 1490 245 | Wire Wire Line 246 | 6230 6380 6355 6380 247 | Wire Wire Line 248 | 6395 1645 6615 1645 249 | Wire Wire Line 250 | 6615 1645 6965 1645 251 | Wire Wire Line 252 | 6615 1730 6615 1645 253 | Wire Wire Line 254 | 6615 2030 6615 2100 255 | Wire Wire Line 256 | 7355 4850 7355 4765 257 | Wire Wire Line 258 | 7355 5450 7355 5525 259 | Wire Wire Line 260 | 7655 5050 7960 5050 261 | Wire Wire Line 262 | 7655 5250 7740 5250 263 | Wire Wire Line 264 | 7660 1100 7660 1125 265 | Wire Wire Line 266 | 7660 1325 7660 1370 267 | Wire Wire Line 268 | 7740 4725 7740 4775 269 | Wire Wire Line 270 | 7740 4975 7740 5250 271 | Wire Wire Line 272 | 7740 5250 8040 5250 273 | Wire Wire Line 274 | 7855 4725 7740 4725 275 | Wire Wire Line 276 | 7855 4725 7855 4675 277 | Wire Wire Line 278 | 7960 4725 7855 4725 279 | Wire Wire Line 280 | 7960 4770 7960 4725 281 | Wire Wire Line 282 | 7960 4970 7960 5050 283 | Wire Wire Line 284 | 7960 5050 8025 5050 285 | Wire Wire Line 286 | 8060 2250 8060 2350 287 | Wire Wire Line 288 | 8060 2350 8060 2450 289 | Wire Wire Line 290 | 8060 2450 8060 2550 291 | Wire Wire Line 292 | 8060 2550 8060 2650 293 | Wire Wire Line 294 | 8060 2650 8060 2750 295 | Wire Wire Line 296 | 8060 2750 8060 2850 297 | Wire Wire Line 298 | 8060 2850 8060 2950 299 | Wire Wire Line 300 | 8060 2950 8060 3050 301 | Wire Wire Line 302 | 8060 3050 8060 3150 303 | Wire Wire Line 304 | 8060 3150 8060 3250 305 | Wire Wire Line 306 | 8060 3250 8060 3350 307 | Wire Wire Line 308 | 8060 3350 8060 3555 309 | Wire Wire Line 310 | 8070 1000 8070 955 311 | Wire Wire Line 312 | 8070 1100 7660 1100 313 | Wire Wire Line 314 | 8070 1100 8070 1000 315 | Wire Wire Line 316 | 8205 1000 8070 1000 317 | Wire Wire Line 318 | 8205 1100 8070 1100 319 | Wire Wire Line 320 | 8205 1300 8130 1300 321 | Wire Wire Line 322 | 8205 1500 8080 1500 323 | Wire Wire Line 324 | 8205 1600 8085 1600 325 | Wire Wire Line 326 | 8205 1700 8085 1700 327 | Wire Wire Line 328 | 8205 1800 8080 1800 329 | Wire Wire Line 330 | 8205 1900 8080 1900 331 | Wire Wire Line 332 | 8205 2000 8080 2000 333 | Wire Wire Line 334 | 8205 2100 8090 2100 335 | Wire Wire Line 336 | 8205 2250 8060 2250 337 | Wire Wire Line 338 | 8205 2350 8060 2350 339 | Wire Wire Line 340 | 8205 2450 8060 2450 341 | Wire Wire Line 342 | 8205 2550 8060 2550 343 | Wire Wire Line 344 | 8205 2650 8060 2650 345 | Wire Wire Line 346 | 8205 2750 8060 2750 347 | Wire Wire Line 348 | 8205 2850 8060 2850 349 | Wire Wire Line 350 | 8205 2950 8060 2950 351 | Wire Wire Line 352 | 8205 3050 8060 3050 353 | Wire Wire Line 354 | 8205 3150 8060 3150 355 | Wire Wire Line 356 | 8205 3250 8060 3250 357 | Wire Wire Line 358 | 8205 3350 8060 3350 359 | Wire Wire Line 360 | 9655 1100 9765 1100 361 | Wire Wire Line 362 | 9655 1200 9765 1200 363 | Wire Wire Line 364 | 9655 1300 9770 1300 365 | Wire Wire Line 366 | 9655 1400 9775 1400 367 | Wire Wire Line 368 | 9655 1500 9775 1500 369 | Wire Wire Line 370 | 9655 1850 9790 1850 371 | Wire Wire Line 372 | 9655 1950 9790 1950 373 | Wire Wire Line 374 | 9655 2050 9780 2050 375 | Wire Wire Line 376 | 9655 2150 9775 2150 377 | Wire Wire Line 378 | 9655 2250 9780 2250 379 | Wire Wire Line 380 | 9655 2500 9745 2500 381 | Wire Wire Line 382 | 9655 2600 9750 2600 383 | Wire Wire Line 384 | 9655 2700 9760 2700 385 | Wire Wire Line 386 | 9655 2800 9760 2800 387 | Wire Wire Line 388 | 9655 3000 9765 3000 389 | Wire Wire Line 390 | 9655 3100 9765 3100 391 | Wire Wire Line 392 | 9655 3200 9770 3200 393 | Wire Wire Line 394 | 9655 3300 9775 3300 395 | Wire Wire Line 396 | 10415 4705 10415 4805 397 | Wire Wire Line 398 | 10415 4805 10085 4805 399 | Wire Wire Line 400 | 10415 5105 10085 5105 401 | Wire Wire Line 402 | 10415 5220 10415 5105 403 | Wire Notes Line 404 | 2355 3120 5190 3120 405 | Wire Notes Line 406 | 2365 490 2365 3100 407 | Wire Notes Line 408 | 2365 3100 470 3100 409 | Wire Notes Line 410 | 2635 5345 2635 7795 411 | Wire Notes Line 412 | 2635 7795 2630 7795 413 | Wire Notes Line 414 | 5170 5335 485 5335 415 | Wire Notes Line 416 | 5180 3140 5180 7785 417 | Wire Notes Line 418 | 5190 3120 5190 470 419 | Wire Notes Line 420 | 6975 5670 5170 5670 421 | Wire Notes Line 422 | 6975 6555 6975 3805 423 | Wire Notes Line 424 | 9055 3805 9055 6535 425 | Wire Notes Line 426 | 11195 3805 5180 3805 427 | Text Notes 1050 5705 0 79 ~ 0 428 | LIPO CHARGING 429 | Text Notes 1135 635 0 79 ~ 0 430 | USB 431 | Text Notes 1910 3395 0 79 ~ 0 432 | POWER AND FILTERING 433 | Text Notes 2690 5500 0 79 ~ 0 434 | LED 435 | Text Notes 3180 695 0 79 ~ 0 436 | FEATHER PINOUT 437 | Text Notes 5200 5810 0 79 ~ 0 438 | Reset 439 | Text Notes 5580 4045 0 79 ~ 0 440 | LIPO MONITORING 441 | Text Notes 7475 655 0 79 ~ 0 442 | LORA MODULE 443 | Text Label 1600 1300 0 50 ~ 0 444 | D+ 445 | Text Label 1600 1400 0 50 ~ 0 446 | D- 447 | Text Label 1855 4440 3 50 ~ 0 448 | EN 449 | Text Label 2985 1295 2 50 ~ 0 450 | RST 451 | Text Label 2985 1695 2 50 ~ 0 452 | A0 453 | Text Label 2985 1795 2 50 ~ 0 454 | A1 455 | Text Label 2985 1895 2 50 ~ 0 456 | A2 457 | Text Label 2985 1995 2 50 ~ 0 458 | A3 459 | Text Label 2985 2095 2 50 ~ 0 460 | A4 461 | Text Label 2985 2195 2 50 ~ 0 462 | D3 463 | Text Label 2985 2295 2 50 ~ 0 464 | SCK 465 | Text Label 2985 2395 2 50 ~ 0 466 | MOSI 467 | Text Label 2985 2495 2 50 ~ 0 468 | MISO 469 | Text Label 2985 2595 2 50 ~ 0 470 | RX 471 | Text Label 2985 2695 2 50 ~ 0 472 | TX 473 | Text Label 4185 1395 0 50 ~ 0 474 | EN 475 | Text Label 4185 1595 0 50 ~ 0 476 | D13 477 | Text Label 4185 1695 0 50 ~ 0 478 | D12 479 | Text Label 4185 1795 0 50 ~ 0 480 | D11 481 | Text Label 4185 1895 0 50 ~ 0 482 | D10 483 | Text Label 4185 1995 0 50 ~ 0 484 | D9 485 | Text Label 4185 2095 0 50 ~ 0 486 | D6 487 | Text Label 4185 2195 0 50 ~ 0 488 | D5 489 | Text Label 4185 2295 0 50 ~ 0 490 | SCL 491 | Text Label 4185 2395 0 50 ~ 0 492 | SDA 493 | Text Label 4210 6545 0 79 ~ 0 494 | D13 495 | Text Label 5865 4955 2 50 ~ 0 496 | A0 497 | Text Label 6355 6380 0 50 ~ 0 498 | RST 499 | Text Label 6965 1645 0 50 ~ 0 500 | ANT 501 | Text Label 8025 5050 0 50 ~ 0 502 | SDA 503 | Text Label 8040 5250 0 50 ~ 0 504 | SCL 505 | Text Label 8080 1500 0 50 ~ 0 506 | ANT 507 | Text Label 8080 1800 0 50 ~ 0 508 | A2 509 | Text Label 8080 1900 0 50 ~ 0 510 | A1 511 | Text Label 8080 2000 0 50 ~ 0 512 | A0 513 | Text Label 8085 1600 0 50 ~ 0 514 | D5 515 | Text Label 8085 1700 0 50 ~ 0 516 | A3 517 | Text Label 8090 2100 0 50 ~ 0 518 | D6 519 | Text Label 8130 1300 2 50 ~ 0 520 | RST 521 | Text Label 9745 2500 0 50 ~ 0 522 | D10 523 | Text Label 9750 2600 0 50 ~ 0 524 | D9 525 | Text Label 9760 2700 0 50 ~ 0 526 | SDA 527 | Text Label 9760 2800 0 50 ~ 0 528 | SCL 529 | Text Label 9765 1100 0 50 ~ 0 530 | RX 531 | Text Label 9765 1200 0 50 ~ 0 532 | TX 533 | Text Label 9765 3000 0 50 ~ 0 534 | SWCLK 535 | Text Label 9765 3100 0 50 ~ 0 536 | SWDIO 537 | Text Label 9770 1300 0 50 ~ 0 538 | D12 539 | Text Label 9770 3200 0 50 ~ 0 540 | A4 541 | Text Label 9775 1400 0 50 ~ 0 542 | MISO 543 | Text Label 9775 1500 0 50 ~ 0 544 | D13 545 | Text Label 9775 2150 0 50 ~ 0 546 | D3 547 | Text Label 9775 3300 0 50 ~ 0 548 | D11 549 | Text Label 9780 2050 0 50 ~ 0 550 | MOSI 551 | Text Label 9780 2250 0 50 ~ 0 552 | SCK 553 | Text Label 9790 1850 0 50 ~ 0 554 | D- 555 | Text Label 9790 1950 0 50 ~ 0 556 | D+ 557 | Text Label 10085 4905 0 50 ~ 0 558 | SWDIO 559 | Text Label 10085 5005 0 50 ~ 0 560 | SWCLK 561 | $Comp 562 | L power:VBUS #PWR014 563 | U 1 1 5DCE3476 564 | P 1120 3855 565 | F 0 "#PWR014" H 1120 3705 50 0001 C CNN 566 | F 1 "VBUS" H 1135 4028 50 0000 C CNN 567 | F 2 "" H 1120 3855 50 0001 C CNN 568 | F 3 "" H 1120 3855 50 0001 C CNN 569 | 1 1120 3855 570 | 1 0 0 -1 571 | $EndComp 572 | $Comp 573 | L power:VBUS #PWR032 574 | U 1 1 5DD2DEF6 575 | P 1440 6235 576 | F 0 "#PWR032" H 1440 6085 50 0001 C CNN 577 | F 1 "VBUS" H 1455 6408 50 0000 C CNN 578 | F 2 "" H 1440 6235 50 0001 C CNN 579 | F 3 "" H 1440 6235 50 0001 C CNN 580 | 1 1440 6235 581 | 1 0 0 -1 582 | $EndComp 583 | $Comp 584 | L power:+BATT #PWR013 585 | U 1 1 5DCBC5E5 586 | P 1470 3675 587 | F 0 "#PWR013" H 1470 3525 50 0001 C CNN 588 | F 1 "+BATT" H 1475 3820 50 0000 C CNN 589 | F 2 "" H 1470 3675 50 0001 C CNN 590 | F 3 "" H 1470 3675 50 0001 C CNN 591 | 1 1470 3675 592 | 1 0 0 -1 593 | $EndComp 594 | $Comp 595 | L power:VBUS #PWR02 596 | U 1 1 5D53EAFC 597 | P 1490 1050 598 | F 0 "#PWR02" H 1490 900 50 0001 C CNN 599 | F 1 "VBUS" H 1490 1200 50 0000 C CNN 600 | F 2 "" H 1490 1050 50 0001 C CNN 601 | F 3 "" H 1490 1050 50 0001 C CNN 602 | 1 1490 1050 603 | 1 0 0 -1 604 | $EndComp 605 | $Comp 606 | L power:VBUS #PWR042 607 | U 1 1 5DD51617 608 | P 1700 7450 609 | F 0 "#PWR042" H 1700 7300 50 0001 C CNN 610 | F 1 "VBUS" H 1715 7623 50 0000 C CNN 611 | F 2 "" H 1700 7450 50 0001 C CNN 612 | F 3 "" H 1700 7450 50 0001 C CNN 613 | 1 1700 7450 614 | 1 0 0 -1 615 | $EndComp 616 | $Comp 617 | L power:+BATT #PWR035 618 | U 1 1 5DD3E86D 619 | P 2285 6565 620 | F 0 "#PWR035" H 2285 6415 50 0001 C CNN 621 | F 1 "+BATT" H 2300 6738 50 0000 C CNN 622 | F 2 "" H 2285 6565 50 0001 C CNN 623 | F 3 "" H 2285 6565 50 0001 C CNN 624 | 1 2285 6565 625 | 1 0 0 -1 626 | $EndComp 627 | $Comp 628 | L power:+3.3V #PWR03 629 | U 1 1 5D541790 630 | P 3035 1195 631 | F 0 "#PWR03" H 3035 1045 50 0001 C CNN 632 | F 1 "+3.3V" H 3035 1345 50 0000 C CNN 633 | F 2 "" H 3035 1195 50 0001 C CNN 634 | F 3 "" H 3035 1195 50 0001 C CNN 635 | 1 3035 1195 636 | 1 0 0 -1 637 | $EndComp 638 | $Comp 639 | L power:+3V3 #PWR015 640 | U 1 1 5DCBB33D 641 | P 3375 4150 642 | F 0 "#PWR015" H 3375 4000 50 0001 C CNN 643 | F 1 "+3V3" H 3390 4323 50 0000 C CNN 644 | F 2 "" H 3375 4150 50 0001 C CNN 645 | F 3 "" H 3375 4150 50 0001 C CNN 646 | 1 3375 4150 647 | 1 0 0 -1 648 | $EndComp 649 | $Comp 650 | L power:+BATT #PWR016 651 | U 1 1 5D4DC4E8 652 | P 4075 4190 653 | F 0 "#PWR016" H 4075 4040 50 0001 C CNN 654 | F 1 "+BATT" H 4075 4340 50 0000 C CNN 655 | F 2 "" H 4075 4190 50 0001 C CNN 656 | F 3 "" H 4075 4190 50 0001 C CNN 657 | 1 4075 4190 658 | 1 0 0 -1 659 | $EndComp 660 | $Comp 661 | L power:+BATT #PWR04 662 | U 1 1 5D53E0CA 663 | P 4185 1245 664 | F 0 "#PWR04" H 4185 1095 50 0001 C CNN 665 | F 1 "+BATT" H 4185 1395 50 0000 C CNN 666 | F 2 "" H 4185 1245 50 0001 C CNN 667 | F 3 "" H 4185 1245 50 0001 C CNN 668 | 1 4185 1245 669 | 1 0 0 -1 670 | $EndComp 671 | $Comp 672 | L power:VBUS #PWR05 673 | U 1 1 5D53E609 674 | P 4435 1245 675 | F 0 "#PWR05" H 4435 1095 50 0001 C CNN 676 | F 1 "VBUS" H 4435 1395 50 0000 C CNN 677 | F 2 "" H 4435 1245 50 0001 C CNN 678 | F 3 "" H 4435 1245 50 0001 C CNN 679 | 1 4435 1245 680 | 1 0 0 -1 681 | $EndComp 682 | $Comp 683 | L power:+BATT #PWR020 684 | U 1 1 5DE0D95C 685 | P 6035 4550 686 | F 0 "#PWR020" H 6035 4400 50 0001 C CNN 687 | F 1 "+BATT" H 6050 4723 50 0000 C CNN 688 | F 2 "" H 6035 4550 50 0001 C CNN 689 | F 3 "" H 6035 4550 50 0001 C CNN 690 | 1 6035 4550 691 | 1 0 0 -1 692 | $EndComp 693 | $Comp 694 | L power:+3V3 #PWR024 695 | U 1 1 5DF927C3 696 | P 7355 4765 697 | F 0 "#PWR024" H 7355 4615 50 0001 C CNN 698 | F 1 "+3V3" H 7370 4938 50 0000 C CNN 699 | F 2 "" H 7355 4765 50 0001 C CNN 700 | F 3 "" H 7355 4765 50 0001 C CNN 701 | 1 7355 4765 702 | 1 0 0 -1 703 | $EndComp 704 | $Comp 705 | L power:+3V3 #PWR0101 706 | U 1 1 5DEBCB35 707 | P 7855 4675 708 | F 0 "#PWR0101" H 7855 4525 50 0001 C CNN 709 | F 1 "+3V3" H 7870 4848 50 0000 C CNN 710 | F 2 "" H 7855 4675 50 0001 C CNN 711 | F 3 "" H 7855 4675 50 0001 C CNN 712 | 1 7855 4675 713 | 1 0 0 -1 714 | $EndComp 715 | $Comp 716 | L power:+3V3 #PWR01 717 | U 1 1 5DC3F49A 718 | P 8070 955 719 | F 0 "#PWR01" H 8070 805 50 0001 C CNN 720 | F 1 "+3V3" H 8085 1128 50 0000 C CNN 721 | F 2 "" H 8070 955 50 0001 C CNN 722 | F 3 "" H 8070 955 50 0001 C CNN 723 | 1 8070 955 724 | 1 0 0 -1 725 | $EndComp 726 | $Comp 727 | L power:+3V3 #PWR021 728 | U 1 1 5DE311FD 729 | P 10415 4705 730 | F 0 "#PWR021" H 10415 4555 50 0001 C CNN 731 | F 1 "+3V3" H 10430 4878 50 0000 C CNN 732 | F 2 "" H 10415 4705 50 0001 C CNN 733 | F 3 "" H 10415 4705 50 0001 C CNN 734 | 1 10415 4705 735 | 1 0 0 -1 736 | $EndComp 737 | $Comp 738 | L power:GND #PWR038 739 | U 1 1 5DD642F1 740 | P 675 6910 741 | F 0 "#PWR038" H 675 6660 50 0001 C CNN 742 | F 1 "GND" H 680 6737 50 0000 C CNN 743 | F 2 "" H 675 6910 50 0001 C CNN 744 | F 3 "" H 675 6910 50 0001 C CNN 745 | 1 675 6910 746 | 1 0 0 -1 747 | $EndComp 748 | $Comp 749 | L power:GND #PWR09 750 | U 1 1 5D54094A 751 | P 1090 1800 752 | F 0 "#PWR09" H 1090 1550 50 0001 C CNN 753 | F 1 "GND" H 1090 1650 50 0000 C CNN 754 | F 2 "" H 1090 1800 50 0001 C CNN 755 | F 3 "" H 1090 1800 50 0001 C CNN 756 | 1 1090 1800 757 | 1 0 0 -1 758 | $EndComp 759 | $Comp 760 | L power:GND #PWR019 761 | U 1 1 5DD03D37 762 | P 1120 4510 763 | F 0 "#PWR019" H 1120 4260 50 0001 C CNN 764 | F 1 "GND" H 1125 4337 50 0000 C CNN 765 | F 2 "" H 1120 4510 50 0001 C CNN 766 | F 3 "" H 1120 4510 50 0001 C CNN 767 | 1 1120 4510 768 | 1 0 0 -1 769 | $EndComp 770 | $Comp 771 | L power:GND #PWR041 772 | U 1 1 5DD2C0FB 773 | P 1440 7055 774 | F 0 "#PWR041" H 1440 6805 50 0001 C CNN 775 | F 1 "GND" H 1445 6882 50 0000 C CNN 776 | F 2 "" H 1440 7055 50 0001 C CNN 777 | F 3 "" H 1440 7055 50 0001 C CNN 778 | 1 1440 7055 779 | 1 0 0 -1 780 | $EndComp 781 | $Comp 782 | L power:GND #PWR017 783 | U 1 1 5DCD70E9 784 | P 1700 4490 785 | F 0 "#PWR017" H 1700 4240 50 0001 C CNN 786 | F 1 "GND" H 1705 4317 50 0000 C CNN 787 | F 2 "" H 1700 4490 50 0001 C CNN 788 | F 3 "" H 1700 4490 50 0001 C CNN 789 | 1 1700 4490 790 | 1 0 0 -1 791 | $EndComp 792 | $Comp 793 | L power:GND #PWR036 794 | U 1 1 5DD44406 795 | P 2115 6825 796 | F 0 "#PWR036" H 2115 6575 50 0001 C CNN 797 | F 1 "GND" H 2215 6720 50 0000 C CNN 798 | F 2 "" H 2115 6825 50 0001 C CNN 799 | F 3 "" H 2115 6825 50 0001 C CNN 800 | 1 2115 6825 801 | 1 0 0 -1 802 | $EndComp 803 | $Comp 804 | L power:GND #PWR08 805 | U 1 1 5D545285 806 | P 2745 1605 807 | F 0 "#PWR08" H 2745 1355 50 0001 C CNN 808 | F 1 "GND" H 2745 1455 50 0000 C CNN 809 | F 2 "" H 2745 1605 50 0001 C CNN 810 | F 3 "" H 2745 1605 50 0001 C CNN 811 | 1 2745 1605 812 | 1 0 0 -1 813 | $EndComp 814 | $Comp 815 | L power:GND #PWR022 816 | U 1 1 5DCBABFE 817 | P 2965 4710 818 | F 0 "#PWR022" H 2965 4460 50 0001 C CNN 819 | F 1 "GND" H 2970 4537 50 0000 C CNN 820 | F 2 "" H 2965 4710 50 0001 C CNN 821 | F 3 "" H 2965 4710 50 0001 C CNN 822 | 1 2965 4710 823 | 1 0 0 -1 824 | $EndComp 825 | $Comp 826 | L power:GND #PWR011 827 | U 1 1 5DFD0DFA 828 | P 2985 2795 829 | F 0 "#PWR011" H 2985 2545 50 0001 C CNN 830 | F 1 "GND" H 2990 2622 50 0000 C CNN 831 | F 2 "" H 2985 2795 50 0001 C CNN 832 | F 3 "" H 2985 2795 50 0001 C CNN 833 | 1 2985 2795 834 | 1 0 0 -1 835 | $EndComp 836 | $Comp 837 | L power:GND #PWR018 838 | U 1 1 5DCE21A1 839 | P 3020 4500 840 | F 0 "#PWR018" H 3020 4250 50 0001 C CNN 841 | F 1 "GND" H 3135 4405 50 0000 C CNN 842 | F 2 "" H 3020 4500 50 0001 C CNN 843 | F 3 "" H 3020 4500 50 0001 C CNN 844 | 1 3020 4500 845 | 1 0 0 -1 846 | $EndComp 847 | $Comp 848 | L power:GND #PWR043 849 | U 1 1 5DED10BC 850 | P 3405 6600 851 | F 0 "#PWR043" H 3405 6350 50 0001 C CNN 852 | F 1 "GND" H 3410 6427 50 0000 C CNN 853 | F 2 "" H 3405 6600 50 0001 C CNN 854 | F 3 "" H 3405 6600 50 0001 C CNN 855 | 1 3405 6600 856 | 1 0 0 -1 857 | $EndComp 858 | $Comp 859 | L power:GND #PWR023 860 | U 1 1 5D4DC006 861 | P 4075 4790 862 | F 0 "#PWR023" H 4075 4540 50 0001 C CNN 863 | F 1 "GND" H 4075 4640 50 0000 C CNN 864 | F 2 "" H 4075 4790 50 0001 C CNN 865 | F 3 "" H 4075 4790 50 0001 C CNN 866 | 1 4075 4790 867 | 1 0 0 -1 868 | $EndComp 869 | $Comp 870 | L power:GND #PWR033 871 | U 1 1 5DE99C1B 872 | P 5740 6425 873 | F 0 "#PWR033" H 5740 6175 50 0001 C CNN 874 | F 1 "GND" H 5745 6252 50 0000 C CNN 875 | F 2 "" H 5740 6425 50 0001 C CNN 876 | F 3 "" H 5740 6425 50 0001 C CNN 877 | 1 5740 6425 878 | 1 0 0 -1 879 | $EndComp 880 | $Comp 881 | L power:GND #PWR026 882 | U 1 1 5DE0E513 883 | P 6035 5300 884 | F 0 "#PWR026" H 6035 5050 50 0001 C CNN 885 | F 1 "GND" H 6040 5127 50 0000 C CNN 886 | F 2 "" H 6035 5300 50 0001 C CNN 887 | F 3 "" H 6035 5300 50 0001 C CNN 888 | 1 6035 5300 889 | 1 0 0 -1 890 | $EndComp 891 | $Comp 892 | L power:GND #PWR07 893 | U 1 1 5DCA13AF 894 | P 6110 1490 895 | F 0 "#PWR07" H 6110 1240 50 0001 C CNN 896 | F 1 "GND" H 6225 1465 50 0000 C CNN 897 | F 2 "" H 6110 1490 50 0001 C CNN 898 | F 3 "" H 6110 1490 50 0001 C CNN 899 | 1 6110 1490 900 | 1 0 0 -1 901 | $EndComp 902 | $Comp 903 | L power:GND #PWR010 904 | U 1 1 5E04B598 905 | P 6615 2100 906 | F 0 "#PWR010" H 6615 1850 50 0001 C CNN 907 | F 1 "GND" H 6730 2075 50 0000 C CNN 908 | F 2 "" H 6615 2100 50 0001 C CNN 909 | F 3 "" H 6615 2100 50 0001 C CNN 910 | 1 6615 2100 911 | 1 0 0 -1 912 | $EndComp 913 | $Comp 914 | L power:GND #PWR028 915 | U 1 1 5DF936AC 916 | P 7355 5525 917 | F 0 "#PWR028" H 7355 5275 50 0001 C CNN 918 | F 1 "GND" H 7360 5352 50 0000 C CNN 919 | F 2 "" H 7355 5525 50 0001 C CNN 920 | F 3 "" H 7355 5525 50 0001 C CNN 921 | 1 7355 5525 922 | 1 0 0 -1 923 | $EndComp 924 | $Comp 925 | L power:GND #PWR06 926 | U 1 1 5DE88565 927 | P 7660 1370 928 | F 0 "#PWR06" H 7660 1120 50 0001 C CNN 929 | F 1 "GND" H 7665 1197 50 0000 C CNN 930 | F 2 "" H 7660 1370 50 0001 C CNN 931 | F 3 "" H 7660 1370 50 0001 C CNN 932 | 1 7660 1370 933 | 1 0 0 -1 934 | $EndComp 935 | $Comp 936 | L power:GND #PWR012 937 | U 1 1 5DC3EA54 938 | P 8060 3555 939 | F 0 "#PWR012" H 8060 3305 50 0001 C CNN 940 | F 1 "GND" H 8065 3382 50 0000 C CNN 941 | F 2 "" H 8060 3555 50 0001 C CNN 942 | F 3 "" H 8060 3555 50 0001 C CNN 943 | 1 8060 3555 944 | 1 0 0 -1 945 | $EndComp 946 | $Comp 947 | L power:GND #PWR025 948 | U 1 1 5DE306F1 949 | P 10415 5220 950 | F 0 "#PWR025" H 10415 4970 50 0001 C CNN 951 | F 1 "GND" H 10420 5047 50 0000 C CNN 952 | F 2 "" H 10415 5220 50 0001 C CNN 953 | F 3 "" H 10415 5220 50 0001 C CNN 954 | 1 10415 5220 955 | 1 0 0 -1 956 | $EndComp 957 | $Comp 958 | L Device:R_Small R6 959 | U 1 1 5DD5D374 960 | P 845 6775 961 | F 0 "R6" V 649 6775 50 0000 C CNN 962 | F 1 "1K" V 740 6775 50 0000 C CNN 963 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 845 6775 50 0001 C CNN 964 | F 3 "~" H 845 6775 50 0001 C CNN 965 | F 4 "RC0603JR-071KL" H 0 0 50 0001 C CNN "manf#" 966 | 1 845 6775 967 | 0 1 1 0 968 | $EndComp 969 | $Comp 970 | L Device:R_Small R2 971 | U 1 1 5DCF8E25 972 | P 1120 4365 973 | F 0 "R2" H 860 4450 50 0000 L CNN 974 | F 1 "100K" V 1045 4290 50 0000 L CNN 975 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1120 4365 50 0001 C CNN 976 | F 3 "~" H 1120 4365 50 0001 C CNN 977 | F 4 "RC0603FR-07100KL" H 0 0 50 0001 C CNN "manf#" 978 | 1 1120 4365 979 | 1 0 0 -1 980 | $EndComp 981 | $Comp 982 | L Device:R_Small R1 983 | U 1 1 5DEE52DA 984 | P 1845 4305 985 | F 0 "R1" H 1904 4351 50 0000 L CNN 986 | F 1 "100K" H 1904 4260 50 0000 L CNN 987 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1845 4305 50 0001 C CNN 988 | F 3 "~" H 1845 4305 50 0001 C CNN 989 | F 4 "RC0603FR-07100KL" H 0 0 50 0001 C CNN "manf#" 990 | 1 1845 4305 991 | 1 0 0 -1 992 | $EndComp 993 | $Comp 994 | L Device:R_Small R8 995 | U 1 1 5DD44C55 996 | P 1890 6990 997 | F 0 "R8" H 1949 7036 50 0000 L CNN 998 | F 1 "330" H 1949 6945 50 0000 L CNN 999 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1890 6990 50 0001 C CNN 1000 | F 3 "~" H 1890 6990 50 0001 C CNN 1001 | F 4 "RC0603FR-07330RL" H 0 0 50 0001 C CNN "manf#" 1002 | 1 1890 6990 1003 | 1 0 0 -1 1004 | $EndComp 1005 | $Comp 1006 | L Device:R_Small R9 1007 | U 1 1 5DED10B1 1008 | P 3575 6545 1009 | F 0 "R9" V 3379 6545 50 0000 C CNN 1010 | F 1 "330" V 3470 6545 50 0000 C CNN 1011 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 3575 6545 50 0001 C CNN 1012 | F 3 "~" H 3575 6545 50 0001 C CNN 1013 | F 4 "RC0603FR-07330RL" H -2195 -1050 50 0001 C CNN "manf#" 1014 | 1 3575 6545 1015 | 0 1 1 0 1016 | $EndComp 1017 | $Comp 1018 | L Device:R_Small R3 1019 | U 1 1 5DDF3936 1020 | P 6035 4765 1021 | F 0 "R3" H 6094 4811 50 0000 L CNN 1022 | F 1 "1M" H 6094 4720 50 0000 L CNN 1023 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6035 4765 50 0001 C CNN 1024 | F 3 "~" H 6035 4765 50 0001 C CNN 1025 | F 4 "RC0603JR-071ML" H 0 0 50 0001 C CNN "manf#" 1026 | 1 6035 4765 1027 | 1 0 0 -1 1028 | $EndComp 1029 | $Comp 1030 | L Device:R_Small R4 1031 | U 1 1 5DDF421C 1032 | P 6035 5130 1033 | F 0 "R4" H 6094 5176 50 0000 L CNN 1034 | F 1 "1.5M" H 6094 5085 50 0000 L CNN 1035 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6035 5130 50 0001 C CNN 1036 | F 3 "~" H 6035 5130 50 0001 C CNN 1037 | F 4 "RC0603JR-071M5L" H 0 0 50 0001 C CNN "manf#" 1038 | 1 6035 5130 1039 | 1 0 0 -1 1040 | $EndComp 1041 | $Comp 1042 | L Device:R_Small R10 1043 | U 1 1 5DE7042C 1044 | P 7740 4875 1045 | F 0 "R10" H 7770 4905 50 0000 L CNN 1046 | F 1 "10K" H 7775 4845 50 0000 L CNN 1047 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7740 4875 50 0001 C CNN 1048 | F 3 "~" H 7740 4875 50 0001 C CNN 1049 | F 4 "RC0603JR-0710KL" H 7740 4875 50 0001 C CNN "manf#" 1050 | 1 7740 4875 1051 | 1 0 0 -1 1052 | $EndComp 1053 | $Comp 1054 | L Device:R_Small R11 1055 | U 1 1 5DE710D8 1056 | P 7960 4870 1057 | F 0 "R11" H 8000 4895 50 0000 L CNN 1058 | F 1 "10K" H 8000 4835 50 0000 L CNN 1059 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7960 4870 50 0001 C CNN 1060 | F 3 "~" H 7960 4870 50 0001 C CNN 1061 | F 4 "RC0603JR-0710KL" H 7960 4870 50 0001 C CNN "manf#" 1062 | 1 7960 4870 1063 | 1 0 0 -1 1064 | $EndComp 1065 | $Comp 1066 | L Device:C_Small C3 1067 | U 1 1 5DCC28BD 1068 | P 1700 4345 1069 | F 0 "C3" H 1560 4405 50 0000 L CNN 1070 | F 1 "10uF" H 1485 4270 50 0000 L CNN 1071 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1700 4345 50 0001 C CNN 1072 | F 3 "~" H 1700 4345 50 0001 C CNN 1073 | F 4 "GRM188R61C106MA73D" H 0 0 50 0001 C CNN "manf#" 1074 | 1 1700 4345 1075 | 1 0 0 -1 1076 | $EndComp 1077 | $Comp 1078 | L Device:C_Small C5 1079 | U 1 1 5DCD8443 1080 | P 2115 6675 1081 | F 0 "C5" H 2207 6721 50 0000 L CNN 1082 | F 1 "10uF" H 2207 6630 50 0000 L CNN 1083 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 2115 6675 50 0001 C CNN 1084 | F 3 "~" H 2115 6675 50 0001 C CNN 1085 | F 4 "GRM188R61C106MA73D" H 0 0 50 0001 C CNN "manf#" 1086 | 1 2115 6675 1087 | 1 0 0 -1 1088 | $EndComp 1089 | $Comp 1090 | L Device:C_Small C4 1091 | U 1 1 5DCD7972 1092 | P 3020 4360 1093 | F 0 "C4" H 3112 4406 50 0000 L CNN 1094 | F 1 "10uF" H 3112 4315 50 0000 L CNN 1095 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 3020 4360 50 0001 C CNN 1096 | F 3 "~" H 3020 4360 50 0001 C CNN 1097 | F 4 "GRM188R61C106MA73D" H 0 0 50 0001 C CNN "manf#" 1098 | 1 3020 4360 1099 | 1 0 0 -1 1100 | $EndComp 1101 | $Comp 1102 | L Device:C_Small C2 1103 | U 1 1 5DC7F1DD 1104 | P 6295 1645 1105 | F 0 "C2" V 6250 1730 50 0000 C CNN 1106 | F 1 "47pF" V 6350 1765 50 0000 C CNN 1107 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6295 1645 50 0001 C CNN 1108 | F 3 "~" H 6295 1645 50 0001 C CNN 1109 | F 4 "0603CG470J500NT" H 0 0 50 0001 C CNN "manf#" 1110 | 1 6295 1645 1111 | 0 1 1 0 1112 | $EndComp 1113 | $Comp 1114 | L Device:C_Small C1 1115 | U 1 1 5DE8000A 1116 | P 7660 1225 1117 | F 0 "C1" H 7545 1290 50 0000 L CNN 1118 | F 1 "0.1uF" H 7395 1160 50 0000 L CNN 1119 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7660 1225 50 0001 C CNN 1120 | F 3 "~" H 7660 1225 50 0001 C CNN 1121 | F 4 "0603YG104ZAT2A" H 0 0 50 0001 C CNN "manf#" 1122 | 1 7660 1225 1123 | 1 0 0 -1 1124 | $EndComp 1125 | $Comp 1126 | L Diode:MBR340 D2 1127 | U 1 1 5DCC3391 1128 | P 1270 4205 1129 | F 0 "D2" V 1140 4310 50 0000 R CNN 1130 | F 1 "MBR120" V 1250 4550 50 0000 R CNN 1131 | F 2 "Diode_SMD:D_SOD-123" H 1270 4030 50 0001 C CNN 1132 | F 3 "http://www.onsemi.com/pub_link/Collateral/MBR340-D.PDF" H 1270 4205 50 0001 C CNN 1133 | F 4 "MBR120LSF" V 1270 4205 50 0001 C CNN "manf#" 1134 | 1 1270 4205 1135 | -1 0 0 1 1136 | $EndComp 1137 | $Comp 1138 | L Device:LED D4 1139 | U 1 1 5DD4566A 1140 | P 1890 7280 1141 | F 0 "D4" V 1837 7358 50 0000 L CNN 1142 | F 1 "CHR" V 1928 7358 50 0000 L CNN 1143 | F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1890 7280 50 0001 C CNN 1144 | F 3 "~" H 1890 7280 50 0001 C CNN 1145 | F 4 "NCD0805G1" H 0 0 50 0001 C CNN "manf#" 1146 | 1 1890 7280 1147 | 0 1 1 0 1148 | $EndComp 1149 | $Comp 1150 | L Device:LED D5 1151 | U 1 1 5DED10AB 1152 | P 3920 6545 1153 | F 0 "D5" H 3913 6761 50 0000 C CNN 1154 | F 1 "D13" H 3913 6670 50 0000 C CNN 1155 | F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 3920 6545 50 0001 C CNN 1156 | F 3 "~" H 3920 6545 50 0001 C CNN 1157 | F 4 "BL-HB335A-TRE" H -2195 -1050 50 0001 C CNN "manf#" 1158 | 1 3920 6545 1159 | 1 0 0 -1 1160 | $EndComp 1161 | $Comp 1162 | L Connector_Generic:Conn_02x01 J4 1163 | U 1 1 5D4DC9A5 1164 | P 4075 4440 1165 | F 0 "J4" V 4225 4540 50 0000 L CNN 1166 | F 1 "Conn_Battery" H 4125 4340 50 0000 C CNN 1167 | F 2 "bast-wan:JST_S2B-PH-SM4-TB(LF)(SN)" H 4075 4440 50 0001 C CNN 1168 | F 3 "~" H 4075 4440 50 0001 C CNN 1169 | F 4 "-" H 0 -100 50 0001 C CNN "manf#" 1170 | 1 4075 4440 1171 | 0 1 1 0 1172 | $EndComp 1173 | $Comp 1174 | L Switch:SW_Push SW1 1175 | U 1 1 5DE8948F 1176 | P 6030 6380 1177 | F 0 "SW1" H 6030 6665 50 0000 C CNN 1178 | F 1 "RST" H 6030 6574 50 0000 C CNN 1179 | F 2 "Button_Switch_SMD:SW_SPST_TL3342" H 6030 6580 50 0001 C CNN 1180 | F 3 "~" H 6030 6580 50 0001 C CNN 1181 | F 4 "TS-1187A-C-C-B" H 0 0 50 0001 C CNN "manf#" 1182 | 1 6030 6380 1183 | 1 0 0 -1 1184 | $EndComp 1185 | $Comp 1186 | L Connector:Conn_01x04_Male J5 1187 | U 1 1 5E1A06D2 1188 | P 9885 4905 1189 | F 0 "J5" H 9993 5186 50 0000 C CNN 1190 | F 1 "SWD" H 9993 5095 50 0000 C CNN 1191 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 9885 4905 50 0001 C CNN 1192 | F 3 "~" H 9885 4905 50 0001 C CNN 1193 | 1 9885 4905 1194 | 1 0 0 -1 1195 | $EndComp 1196 | $Comp 1197 | L Device:Antenna_Shield AE1 1198 | U 1 1 5DC7DE85 1199 | P 6010 1245 1200 | F 0 "AE1" H 6154 1284 50 0000 L CNN 1201 | F 1 "Antenna" H 6154 1193 50 0000 L CNN 1202 | F 2 "bast-wan:SMA_EDGE" H 6010 1345 50 0001 C CNN 1203 | F 3 "~" H 6010 1345 50 0001 C CNN 1204 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 1205 | 1 6010 1245 1206 | 1 0 0 -1 1207 | $EndComp 1208 | $Comp 1209 | L Bast_WAN-rescue:DMG2301L-Transistor_FET Q1 1210 | U 1 1 5DD047C9 1211 | P 1370 3945 1212 | F 0 "Q1" H 1220 3990 50 0000 L CNN 1213 | F 1 "DMG3415U-7" V 1580 3745 50 0000 L CNN 1214 | F 2 "Package_TO_SOT_SMD:SOT-23" H 1570 3870 50 0001 L CIN 1215 | F 3 "https://www.diodes.com/assets/Datasheets/DMG2301L.pdf" H 1370 3945 50 0001 L CNN 1216 | F 4 "DMG3415UQ-7" H 0 0 50 0001 C CNN "manf#" 1217 | 1 1370 3945 1218 | 1 0 0 -1 1219 | $EndComp 1220 | $Comp 1221 | L Bast_WAN-rescue:D_TVS_ALT-Device D1 1222 | U 1 1 5E033E5A 1223 | P 6615 1880 1224 | F 0 "D1" V 6569 1959 50 0000 L CNN 1225 | F 1 "PGB1010402KR" V 6660 1959 50 0000 L CNN 1226 | F 2 "Inductor_SMD:L_0402_1005Metric" H 6615 1880 50 0001 C CNN 1227 | F 3 "~" H 6615 1880 50 0001 C CNN 1228 | F 4 "PGB1010402KR" V 6615 1880 50 0001 C CNN "manf#" 1229 | 1 6615 1880 1230 | 0 1 1 0 1231 | $EndComp 1232 | $Comp 1233 | L Bast_WAN-rescue:ATECC608A-SSHDA-Security U3 1234 | U 1 1 5DF09E98 1235 | P 7355 5150 1236 | F 0 "U3" H 7125 5196 50 0000 R CNN 1237 | F 1 "ATECC608A-TNGLORA" H 8195 4890 50 0000 R CNN 1238 | F 2 "Package_DFN_QFN:DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm" H 7355 5150 50 0001 C CNN 1239 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/ATECC608A-CryptoAuthentication-Device-Summary-Data-Sheet-DS40001977B.pdf" H 7505 5400 50 0001 C CNN 1240 | F 4 "ATECC608A-MAHCZ-T" H -640 -35 50 0001 C CNN "manf#" 1241 | 1 7355 5150 1242 | 1 0 0 -1 1243 | $EndComp 1244 | $Comp 1245 | L Connector_Generic:Conn_01x12 J2 1246 | U 1 1 5D4E69E8 1247 | P 3935 1795 1248 | F 0 "J2" H 3935 2395 50 0000 C CNN 1249 | F 1 "Conn_Right" V 4035 1595 50 0000 C CNN 1250 | F 2 "Connector_PinSocket_2.54mm:PinSocket_1x12_P2.54mm_Vertical" H 3935 1795 50 0001 C CNN 1251 | F 3 "~" H 3935 1795 50 0001 C CNN 1252 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 1253 | 1 3935 1795 1254 | -1 0 0 -1 1255 | $EndComp 1256 | $Comp 1257 | L Connector:USB_B_Micro J1 1258 | U 1 1 5D4D715B 1259 | P 1140 1300 1260 | F 0 "J1" H 1140 1650 50 0000 C CNN 1261 | F 1 "USB_B_Micro" V 890 1300 50 0000 C CNN 1262 | F 2 "Connectors:U254051N4BH806" H 1290 1250 50 0001 C CNN 1263 | F 3 "~" H 1290 1250 50 0001 C CNN 1264 | F 4 "U254-051N-4BH806" H 0 0 50 0001 C CNN "manf#" 1265 | 1 1140 1300 1266 | 1 0 0 -1 1267 | $EndComp 1268 | $Comp 1269 | L Connector_Generic:Conn_01x16 J3 1270 | U 1 1 5D4E7BAF 1271 | P 3285 1995 1272 | F 0 "J3" H 3285 2795 50 0000 C CNN 1273 | F 1 "Conn_Left" V 3385 1995 50 0000 C CNN 1274 | F 2 "Connector_PinSocket_2.54mm:PinSocket_1x16_P2.54mm_Vertical" H 3285 1995 50 0001 C CNN 1275 | F 3 "~" H 3285 1995 50 0001 C CNN 1276 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 1277 | 1 3285 1995 1278 | 1 0 0 -1 1279 | $EndComp 1280 | $Comp 1281 | L Battery_Management:MCP73831-3-OT U5 1282 | U 1 1 5DC7CD09 1283 | P 1440 6675 1284 | F 0 "U5" H 1705 6925 50 0000 C CNN 1285 | F 1 "MCP73831-3-OT" H 1030 6940 50 0000 C CNN 1286 | F 2 "Package_TO_SOT_SMD:SOT-23-5" H 1490 6425 50 0001 L CIN 1287 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf" H 1290 6625 50 0001 C CNN 1288 | F 4 "MCP73831T-5ACI/OT" H 0 0 50 0001 C CNN "manf#" 1289 | 1 1440 6675 1290 | 1 0 0 -1 1291 | $EndComp 1292 | $Comp 1293 | L Bast_WAN-rescue:AP2112K-3.3TRG1-electroniccats U2 1294 | U 1 1 5DC7B9FC 1295 | P 2425 4405 1296 | F 0 "U2" H 2170 4745 50 0000 C CNN 1297 | F 1 "AP2112K-3.3TRG1" H 2425 4110 50 0000 C CNN 1298 | F 2 "Package_TO_SOT_SMD:TSOT-23-5" H 2425 4405 50 0001 L BNN 1299 | F 3 "SOT-753 Diodes Inc." H 2425 4405 50 0001 L BNN 1300 | F 4 "AP2112K-3.3TRG1" H 0 0 50 0001 C CNN "manf#" 1301 | 1 2425 4405 1302 | 1 0 0 -1 1303 | $EndComp 1304 | $Comp 1305 | L Bast_WAN-rescue:RAK4260-electroniccats U1 1306 | U 1 1 5DC2C674 1307 | P 8905 1150 1308 | F 0 "U1" H 8930 1525 50 0000 C CNN 1309 | F 1 "RAK4260" H 8930 1434 50 0000 C CNN 1310 | F 2 "bast-wan:RAK4260-footprint_w_solder_paste" H 8555 800 50 0001 C CNN 1311 | F 3 "" H 8555 800 50 0001 C CNN 1312 | F 4 "-" H 0 0 50 0001 C CNN "manf#" 1313 | 1 8905 1150 1314 | 1 0 0 -1 1315 | $EndComp 1316 | $EndSCHEMATC 1317 | -------------------------------------------------------------------------------- /Hardware/bast-wan.pretty/JST_S2B-PH-SM4-TB(LF)(SN).kicad_mod: -------------------------------------------------------------------------------- 1 | 2 | (module JST_S2B-PH-SM4-TB_LF__SN_ (layer F.Cu) (tedit 5F3D830A) 3 | (descr "") 4 | (fp_text reference REF** (at -0.69228 -3.184 0) (layer F.SilkS) 5 | (effects (font (size 1.00218897638 1.00218897638) (thickness 0.015))) 6 | ) 7 | (fp_text value JST_S2B-PH-SM4-TB_LF__SN_ (at 12.17833 9.48143 0) (layer F.Fab) 8 | (effects (font (size 1.00357480315 1.00357480315) (thickness 0.015))) 9 | ) 10 | (fp_line (start 3.95 -0.35) (end 1.9 -0.35) (layer F.SilkS) (width 0.127)) 11 | (fp_line (start -1.9 -0.35) (end -3.95 -0.35) (layer F.SilkS) (width 0.127)) 12 | (fp_line (start -3.95 -0.35) (end -3.95 3.65) (layer F.SilkS) (width 0.127)) 13 | (fp_circle (center -2.15 -1.35) (end -2.05 -1.35) (layer F.SilkS) (width 0.3)) 14 | (fp_line (start -2.2 7.25) (end 2.2 7.25) (layer F.SilkS) (width 0.127)) 15 | (fp_line (start 3.95 3.65) (end 3.95 -0.35) (layer F.SilkS) (width 0.127)) 16 | (fp_line (start 4.35 7.7) (end -4.35 7.7) (layer F.CrtYd) (width 0.05)) 17 | (fp_line (start -4.35 7.7) (end -4.35 -0.6) (layer F.CrtYd) (width 0.05)) 18 | (fp_line (start -4.35 -0.6) (end -1.75 -0.6) (layer F.CrtYd) (width 0.05)) 19 | (fp_line (start -1.75 -0.6) (end -1.75 -2.0) (layer F.CrtYd) (width 0.05)) 20 | (fp_line (start -1.75 -2.0) (end 1.75 -2.0) (layer F.CrtYd) (width 0.05)) 21 | (fp_line (start 1.75 -2.0) (end 1.75 -0.6) (layer F.CrtYd) (width 0.05)) 22 | (fp_line (start 1.75 -0.6) (end 4.35 -0.6) (layer F.CrtYd) (width 0.05)) 23 | (fp_line (start 4.35 -0.6) (end 4.35 7.7) (layer F.CrtYd) (width 0.05)) 24 | (fp_line (start 3.95 -0.35) (end 3.95 7.25) (layer F.Fab) (width 0.127)) 25 | (fp_line (start 3.95 7.25) (end -3.95 7.25) (layer F.Fab) (width 0.127)) 26 | (fp_line (start -3.95 7.25) (end -3.95 -0.35) (layer F.Fab) (width 0.127)) 27 | (fp_line (start -3.95 -0.35) (end 3.95 -0.35) (layer F.Fab) (width 0.127)) 28 | (fp_circle (center -2.15 -1.35) (end -2.05 -1.35) (layer F.Fab) (width 0.3)) 29 | (pad 2 smd rect (at 1.0 0.0) (size 1.0 3.5) (layers F.Cu F.Mask F.Paste)) 30 | (pad 1 smd rect (at -1.0 0.0) (size 1.0 3.5) (layers F.Cu F.Mask F.Paste)) 31 | (pad S2 smd rect (at 3.35 5.75) (size 1.5 3.4) (layers F.Cu F.Mask F.Paste)) 32 | (pad S1 smd rect (at -3.35 5.75) (size 1.5 3.4) (layers F.Cu F.Mask F.Paste)) 33 | ) -------------------------------------------------------------------------------- /Hardware/bast-wan.pretty/RAK4260-footprint_w_solder_paste.kicad_mod: -------------------------------------------------------------------------------- 1 | (module RAK4260-footprint_w_solder_paste (layer F.Cu) (tedit 5DC2A763) 2 | (fp_text reference REF** (at 0.5 -0.25) (layer F.SilkS) hide 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value RAK4260-footprint_w_solder_paste (at 6.985 14.605) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -6.5 -7.5) (end -7.5 -6.5) (layer F.SilkS) (width 0.12)) 9 | (fp_line (start -7.5 7.5) (end -7.5 -6.5) (layer F.SilkS) (width 0.12)) 10 | (fp_line (start 7.5 -7.5) (end -6.5 -7.5) (layer F.SilkS) (width 0.12)) 11 | (fp_line (start 7.5 7.5) (end 7.5 -7.5) (layer F.SilkS) (width 0.12)) 12 | (fp_line (start -7.5 7.5) (end 7.5 7.5) (layer F.SilkS) (width 0.12)) 13 | (fp_line (start 0 8) (end 0 -8) (layer Eco1.User) (width 0.12)) 14 | (fp_line (start -8 0) (end 8 0) (layer Eco1.User) (width 0.12)) 15 | (pad 37 smd rect (at -6.61 -5.71) (size 1.5 1.5) (layers F.Cu F.Paste F.Mask) 16 | (solder_paste_margin -0.1)) 17 | (pad 37 smd rect (at 5.83 -6.47) (size 1.5 1.5) (layers F.Cu F.Paste F.Mask) 18 | (solder_paste_margin -0.1)) 19 | (pad 37 smd rect (at 6.6 5.85) (size 1.5 1.5) (layers F.Cu F.Paste F.Mask) 20 | (solder_paste_margin -0.1)) 21 | (pad 37 smd rect (at -5.85 6.48) (size 1.5 1.5) (layers F.Cu F.Paste F.Mask) 22 | (solder_paste_margin -0.1)) 23 | (pad 1 smd roundrect (at -7.5 -4.22) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 24 | (pad 2 smd roundrect (at -7.5 -3.02) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 25 | (pad 3 smd roundrect (at -7.5 -1.82) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 26 | (pad 4 smd roundrect (at -7.5 -0.62) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 27 | (pad 5 smd roundrect (at -7.5 0.58) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 28 | (pad 6 smd roundrect (at -7.5 1.78) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 29 | (pad 7 smd roundrect (at -7.5 2.98) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 30 | (pad 8 smd roundrect (at -7.5 4.18) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 31 | (pad 9 smd roundrect (at -7.5 5.38) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 32 | (pad 10 smd roundrect (at -4.2 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 33 | (pad 11 smd roundrect (at -3 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 34 | (pad 12 smd roundrect (at -1.8 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 35 | (pad 13 smd roundrect (at -0.6 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 36 | (pad 14 smd roundrect (at 0.6 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 37 | (pad 15 smd roundrect (at 1.8 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 38 | (pad 16 smd roundrect (at 3 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 39 | (pad 17 smd roundrect (at 4.2 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 40 | (pad 18 smd roundrect (at 5.4 7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 41 | (pad 27 smd roundrect (at 7.5 -5.35 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 42 | (pad 26 smd roundrect (at 7.5 -4.15 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 43 | (pad 25 smd roundrect (at 7.5 -2.95 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 44 | (pad 24 smd roundrect (at 7.5 -1.75 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 45 | (pad 23 smd roundrect (at 7.5 -0.55 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 46 | (pad 22 smd roundrect (at 7.5 0.65 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 47 | (pad 21 smd roundrect (at 7.5 1.85 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 48 | (pad 20 smd roundrect (at 7.5 3.05 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 49 | (pad 19 smd roundrect (at 7.5 4.25 180) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 50 | (pad 36 smd roundrect (at -5.54 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 51 | (pad 35 smd roundrect (at -4.34 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 52 | (pad 34 smd roundrect (at -3.14 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 53 | (pad 33 smd roundrect (at -1.94 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 54 | (pad 32 smd roundrect (at -0.74 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 55 | (pad 31 smd roundrect (at 0.46 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 56 | (pad 30 smd roundrect (at 1.66 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 57 | (pad 29 smd roundrect (at 2.86 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 58 | (pad 28 smd roundrect (at 4.06 -7.5 90) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) 59 | (model ${KIPRJMOD}/bast-wan.pretty/packages3d/rak4260.3dshapes/rak4260-no-copper.step 60 | (at (xyz 0 0 0)) 61 | (scale (xyz 1 1 1)) 62 | (rotate (xyz 0 0 0)) 63 | ) 64 | ) 65 | -------------------------------------------------------------------------------- /Hardware/bast-wan.pretty/S2B-PH-SM4-TB_LF__SN_.mod: -------------------------------------------------------------------------------- 1 | PCBNEW-LibModule-V1 2 | # encoding utf-8 3 | Units mm 4 | $INDEX 5 | JST_S2B-PH-SM4-TB(LF)(SN) 6 | $EndINDEX 7 | $MODULE JST_S2B-PH-SM4-TB(LF)(SN) 8 | Po 0 0 0 15 00000000 00000000 ~~ 9 | Li JST_S2B-PH-SM4-TB(LF)(SN) 10 | Cd 11 | Sc 00000000 12 | At SMD 13 | Op 0 0 0 14 | .SolderMask 0 15 | .SolderPaste 0 16 | T0 -1.32867 -3.184 1.00219 1.00219 0 0.05 N V 21 "JST_S2B-PH-SM4-TB(LF)(SN)" 17 | T1 -0.56707 9.48143 1.00357 1.00357 0 0.05 N V 21 "VAL**" 18 | DS 3.95 -0.35 1.9 -0.35 0.127 21 19 | DS -1.9 -0.35 -3.95 -0.35 0.127 21 20 | DS -3.95 -0.35 -3.95 3.65 0.127 21 21 | DC -2.15 -1.35 -2.05 -1.35 0.3 21 22 | DS -2.2 7.25 2.2 7.25 0.127 21 23 | DS 3.95 3.65 3.95 -0.35 0.127 21 24 | DS 4.35 7.7 -4.35 7.7 0.05 26 25 | DS -4.35 7.7 -4.35 -0.6 0.05 26 26 | DS -4.35 -0.6 -1.75 -0.6 0.05 26 27 | DS -1.75 -0.6 -1.75 -2 0.05 26 28 | DS -1.75 -2 1.75 -2 0.05 26 29 | DS 1.75 -2 1.75 -0.6 0.05 26 30 | DS 1.75 -0.6 4.35 -0.6 0.05 26 31 | DS 4.35 -0.6 4.35 7.7 0.05 26 32 | DS 3.95 -0.35 3.95 7.25 0.127 27 33 | DS 3.95 7.25 -3.95 7.25 0.127 27 34 | DS -3.95 7.25 -3.95 -0.35 0.127 27 35 | DS -3.95 -0.35 3.95 -0.35 0.127 27 36 | DC -2.15 -1.35 -2.05 -1.35 0.3 27 37 | $PAD 38 | Sh "2" R 1 3.5 0 0 1800 39 | At SMD N 00888000 40 | .SolderMask 0 41 | .SolderPaste 0 42 | Ne 0 "" 43 | Po 1 0 44 | $EndPAD 45 | $PAD 46 | Sh "1" R 1 3.5 0 0 1800 47 | At SMD N 00888000 48 | .SolderMask 0 49 | .SolderPaste 0 50 | Ne 0 "" 51 | Po -1 0 52 | $EndPAD 53 | $PAD 54 | Sh "S2" R 1.5 3.4 0 0 1800 55 | At SMD N 00888000 56 | .SolderMask 0 57 | .SolderPaste 0 58 | Ne 0 "" 59 | Po 3.35 5.75 60 | $EndPAD 61 | $PAD 62 | Sh "S1" R 1.5 3.4 0 0 1800 63 | At SMD N 00888000 64 | .SolderMask 0 65 | .SolderPaste 0 66 | Ne 0 "" 67 | Po -3.35 5.75 68 | $EndPAD 69 | $EndMODULE JST_S2B-PH-SM4-TB(LF)(SN) 70 | -------------------------------------------------------------------------------- /Hardware/bast-wan.pretty/SMA_EDGE.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SMA_EDGE (layer F.Cu) (tedit 5DC2A94D) 2 | (fp_text reference REF** (at 5.08 -6.35) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15)) (justify right top)) 4 | ) 5 | (fp_text value Antenna_Shield (at 3.4 6.1) (layer F.SilkS) 6 | (effects (font (size 0.77216 0.77216) (thickness 0.077216)) (justify right top)) 7 | ) 8 | (fp_poly (pts (xy 0.9906 1.8018) (xy 3.1242 1.8018) (xy 3.1242 0.989) (xy 0.9906 0.989)) (layer F.Paste) (width 0)) 9 | (fp_poly (pts (xy 0.889 1.8526) (xy 3.2258 1.8526) (xy 3.2258 0.9382) (xy 0.889 0.9382)) (layer F.Mask) (width 0)) 10 | (fp_poly (pts (xy 0.9906 -0.989) (xy 3.1242 -0.989) (xy 3.1242 -1.8018) (xy 0.9906 -1.8018)) (layer F.Paste) (width 0)) 11 | (fp_poly (pts (xy 0.889 -0.9382) (xy 3.2258 -0.9382) (xy 3.2258 -1.8526) (xy 0.889 -1.8526)) (layer F.Mask) (width 0)) 12 | (fp_poly (pts (xy 3.2004 0.4826) (xy 3.9624 0.4826) (xy 3.9624 -0.4826) (xy 3.2004 -0.4826)) (layer F.Paste) (width 0)) 13 | (fp_line (start 3.5574 2.1) (end 3.3574 2.1) (layer Dwgs.User) (width 0.2032)) 14 | (fp_line (start 3.5574 0.7) (end 3.3574 0.7) (layer Dwgs.User) (width 0.2032)) 15 | (fp_line (start 3.5574 -0.7) (end 3.3574 -0.7) (layer Dwgs.User) (width 0.2032)) 16 | (fp_line (start 3.5574 -2.1) (end 3.3574 -2.1) (layer Dwgs.User) (width 0.2032)) 17 | (fp_line (start 3.5574 2.1) (end 3.5574 0.7) (layer Dwgs.User) (width 0.2032)) 18 | (fp_line (start 3.5574 -0.7) (end 3.5574 -2.1) (layer Dwgs.User) (width 0.2032)) 19 | (fp_line (start 3.4574 2) (end 3.4574 0.7) (layer Dwgs.User) (width 0.2032)) 20 | (fp_line (start 3.4574 -0.7) (end 3.4574 -2) (layer Dwgs.User) (width 0.2032)) 21 | (fp_line (start 0.7574 2.1) (end 0.7574 0.7) (layer Dwgs.User) (width 0.2032)) 22 | (fp_line (start 0.7574 -0.7) (end 0.7574 -2.1) (layer Dwgs.User) (width 0.2032)) 23 | (fp_line (start 3.3574 2.1) (end 3.3574 0.7) (layer Dwgs.User) (width 0.2032)) 24 | (fp_line (start 0.7574 2.1) (end 3.3574 2.1) (layer Dwgs.User) (width 0.2032)) 25 | (fp_line (start 3.3574 -2.1) (end 0.7574 -2.1) (layer Dwgs.User) (width 0.2032)) 26 | (fp_line (start 3.3574 -0.7) (end 3.3574 -2.1) (layer Dwgs.User) (width 0.2032)) 27 | (fp_poly (pts (xy -1.524 -5.08) (xy 0 -5.08) (xy 0 5.08) (xy -1.524 5.08)) (layer Dwgs.User) (width 0)) 28 | (fp_poly (pts (xy -1.524 -3.048) (xy 3.81 -3.048) (xy 3.81 -2.032) (xy 0 -2.032) 29 | (xy 0 2.032) (xy 3.81 2.032) (xy 3.81 3.048) (xy -1.524 3.048)) (layer Dwgs.User) (width 0)) 30 | (fp_poly (pts (xy 0 0.3175) (xy 3.175 0.3175) (xy 3.175 -0.3175) (xy 0 -0.3175)) (layer Dwgs.User) (width 0)) 31 | (fp_line (start -4.445 -3.175) (end -3.81 3.175) (layer Dwgs.User) (width 0.2032)) 32 | (fp_line (start -5.08 -3.175) (end -4.445 3.175) (layer Dwgs.User) (width 0.2032)) 33 | (fp_line (start -5.715 -3.175) (end -5.08 3.175) (layer Dwgs.User) (width 0.2032)) 34 | (fp_line (start -6.35 -3.175) (end -5.715 3.175) (layer Dwgs.User) (width 0.2032)) 35 | (fp_line (start -6.985 -3.175) (end -6.35 3.175) (layer Dwgs.User) (width 0.2032)) 36 | (fp_line (start -7.62 -3.175) (end -6.985 3.175) (layer Dwgs.User) (width 0.2032)) 37 | (fp_line (start -8.255 -3.175) (end -7.62 3.175) (layer Dwgs.User) (width 0.2032)) 38 | (fp_line (start -8.255 -2.54) (end -8.255 2.54) (layer Dwgs.User) (width 0.2032)) 39 | (fp_line (start -9.2075 2.54) (end -9.2075 -2.54) (layer Dwgs.User) (width 0.2032)) 40 | (fp_line (start -8.255 2.54) (end -9.2075 2.54) (layer Dwgs.User) (width 0.2032)) 41 | (fp_line (start -8.255 3.175) (end -8.255 2.54) (layer Dwgs.User) (width 0.2032)) 42 | (fp_line (start -7.62 3.175) (end -8.255 3.175) (layer Dwgs.User) (width 0.2032)) 43 | (fp_line (start -6.985 3.175) (end -7.62 3.175) (layer Dwgs.User) (width 0.2032)) 44 | (fp_line (start -6.35 3.175) (end -6.985 3.175) (layer Dwgs.User) (width 0.2032)) 45 | (fp_line (start -5.715 3.175) (end -6.35 3.175) (layer Dwgs.User) (width 0.2032)) 46 | (fp_line (start -5.08 3.175) (end -5.715 3.175) (layer Dwgs.User) (width 0.2032)) 47 | (fp_line (start -4.445 3.175) (end -5.08 3.175) (layer Dwgs.User) (width 0.2032)) 48 | (fp_line (start -3.4925 3.175) (end -4.445 3.175) (layer Dwgs.User) (width 0.2032)) 49 | (fp_line (start -3.4925 2.54) (end -3.4925 3.175) (layer Dwgs.User) (width 0.2032)) 50 | (fp_line (start -1.5875 2.54) (end -3.4925 2.54) (layer Dwgs.User) (width 0.2032)) 51 | (fp_line (start -1.5875 -2.54) (end -1.5875 2.54) (layer Dwgs.User) (width 0.2032)) 52 | (fp_line (start -3.4925 -2.54) (end -1.5875 -2.54) (layer Dwgs.User) (width 0.2032)) 53 | (fp_line (start -3.4925 -3.175) (end -3.4925 -2.54) (layer Dwgs.User) (width 0.2032)) 54 | (fp_line (start -4.445 -3.175) (end -3.4925 -3.175) (layer Dwgs.User) (width 0.2032)) 55 | (fp_line (start -5.08 -3.175) (end -4.445 -3.175) (layer Dwgs.User) (width 0.2032)) 56 | (fp_line (start -5.715 -3.175) (end -5.08 -3.175) (layer Dwgs.User) (width 0.2032)) 57 | (fp_line (start -6.35 -3.175) (end -5.715 -3.175) (layer Dwgs.User) (width 0.2032)) 58 | (fp_line (start -6.985 -3.175) (end -6.35 -3.175) (layer Dwgs.User) (width 0.2032)) 59 | (fp_line (start -7.62 -3.175) (end -6.985 -3.175) (layer Dwgs.User) (width 0.2032)) 60 | (fp_line (start -8.255 -3.175) (end -7.62 -3.175) (layer Dwgs.User) (width 0.2032)) 61 | (fp_line (start -8.255 -2.54) (end -8.255 -3.175) (layer Dwgs.User) (width 0.2032)) 62 | (fp_line (start -9.2075 -2.54) (end -8.255 -2.54) (layer Dwgs.User) (width 0.2032)) 63 | (pad 2 smd rect (at 2.032 2.54 90) (size 1.524 4.064) (layers B.Cu B.Paste B.Mask)) 64 | (pad 2 smd rect (at 2.032 -2.54 90) (size 1.524 4.064) (layers B.Cu B.Paste B.Mask)) 65 | (pad 1 smd rect (at 3.048 0 90) (size 1.016 2.032) (layers F.Cu F.Paste F.Mask)) 66 | (pad 2 smd rect (at 2.032 2.54 90) (size 1.524 4.064) (layers F.Cu F.Paste F.Mask)) 67 | (pad 2 smd rect (at 2.032 -2.54 90) (size 1.524 4.064) (layers F.Cu F.Paste F.Mask)) 68 | ) 69 | -------------------------------------------------------------------------------- /Hardware/bast-wan.pretty/rak.kicad_mod: -------------------------------------------------------------------------------- 1 | (module LOGO (layer F.Cu) 2 | (at 0 0) 3 | (fp_text reference "G***" (at 0 0) (layer F.SilkS) hide 4 | (effects (font (thickness 0.3))) 5 | ) 6 | (fp_text value "LOGO" (at 0.75 0) (layer F.SilkS) hide 7 | (effects (font (thickness 0.3))) 8 | ) 9 | (fp_poly (pts (xy 6.900333 -0.797278) (xy 6.899984 -0.413936) (xy 6.898987 -0.058701) (xy 6.897416 0.259913) (xy 6.895342 0.533391) (xy 6.892841 0.753216) (xy 6.889985 0.910872) (xy 6.886848 0.997845) 10 | (xy 6.884720 1.012472) (xy 6.847716 0.963689) (xy 6.771921 0.858761) (xy 6.665569 0.709444) (xy 6.536890 0.527489) (xy 6.394118 0.324652) (xy 6.245484 0.112686) (xy 6.099220 -0.096656) 11 | (xy 5.963559 -0.291620) (xy 5.846733 -0.460452) (xy 5.756974 -0.591399) (xy 5.702514 -0.672707) (xy 5.689922 -0.693426) (xy 5.712697 -0.737035) (xy 5.787074 -0.829402) (xy 5.903927 -0.960293) 12 | (xy 6.054129 -1.119472) (xy 6.222492 -1.290660) (xy 6.397265 -1.466724) (xy 6.549182 -1.622973) (xy 6.668793 -1.749420) (xy 6.746648 -1.836083) (xy 6.773333 -1.872639) (xy 6.734023 -1.886349) 13 | (xy 6.628159 -1.897179) (xy 6.473842 -1.903719) (xy 6.358465 -1.905000) (xy 5.943597 -1.905000) (xy 4.847167 -0.731150) (xy 4.823675 -1.905000) (xy 4.148667 -1.905000) (xy 4.148667 1.058334) 14 | (xy 4.826000 1.058334) (xy 4.826000 0.109038) (xy 5.180048 -0.251710) (xy 5.617256 0.403312) (xy 6.054464 1.058333) (xy 6.477399 1.058334) (xy 6.900333 1.058334) (xy 6.900333 2.624667) 15 | (xy 6.401553 2.624667) (xy 6.566276 2.199895) (xy 6.645924 1.992120) (xy 6.696610 1.850387) (xy 6.720943 1.762174) (xy 6.721529 1.714962) (xy 6.700974 1.696229) (xy 6.671751 1.693334) 16 | (xy 6.625201 1.730027) (xy 6.569804 1.824429) (xy 6.536389 1.905000) (xy 6.489363 2.023128) (xy 6.450049 2.099961) (xy 6.433736 2.116667) (xy 6.407150 2.080000) (xy 6.368563 1.986379) 17 | (xy 6.344934 1.915584) (xy 6.292437 1.782041) (xy 6.233775 1.715755) (xy 6.190590 1.701137) (xy 6.145836 1.697713) (xy 6.126925 1.714294) (xy 6.135638 1.766305) (xy 6.173757 1.869172) 18 | (xy 6.224254 1.992709) (xy 6.301925 2.194571) (xy 6.340054 2.333783) (xy 6.339618 2.422040) (xy 6.301590 2.471036) (xy 6.265333 2.485401) (xy 6.196535 2.527925) (xy 6.180667 2.566104) 19 | (xy 6.170729 2.574027) (xy 6.138464 2.581226) (xy 6.080190 2.587731) (xy 5.992228 2.593578) (xy 5.870896 2.598798) (xy 5.712514 2.603425) (xy 5.513403 2.607492) (xy 5.269880 2.611031) 20 | (xy 4.978267 2.614076) (xy 4.634882 2.616660) (xy 4.236045 2.618814) (xy 3.778076 2.620574) (xy 3.257294 2.621970) (xy 2.670019 2.623037) (xy 2.012570 2.623807) (xy 1.281267 2.624313) 21 | (xy 0.472429 2.624589) (xy -0.359833 2.624667) (xy -6.900333 2.624667) (xy -6.900333 1.415061) (xy -5.500610 1.415061) (xy -5.492290 1.490038) (xy -5.459461 1.555601) (xy -5.363201 1.657818) 22 | (xy -5.268961 1.701136) (xy -5.059157 1.721639) (xy -4.809913 1.702667) (xy -4.554047 1.648871) (xy -4.331563 1.568278) (xy -4.114512 1.439334) (xy -1.439333 1.439334) (xy -1.439333 2.370667) 23 | (xy -1.185333 2.370667) (xy -1.185333 2.032000) (xy -1.077576 2.032000) (xy -1.047122 2.204266) (xy -0.957200 2.316960) (xy -0.809971 2.367811) (xy -0.755439 2.370667) (xy -0.589862 2.340341) 24 | (xy -0.508000 2.286000) (xy -0.437248 2.155380) (xy -0.423333 2.032000) (xy -0.453776 1.860299) (xy -0.544260 1.748112) (xy -0.693521 1.696727) (xy -0.755439 1.693334) (xy -0.919297 1.725350) 25 | (xy -1.026490 1.819887) (xy -1.074859 1.974670) (xy -1.077576 2.032000) (xy -1.185333 2.032000) (xy -1.185333 1.545167) (xy -0.508000 1.545167) (xy -0.494331 1.620803) (xy -0.436227 1.648473) 26 | (xy -0.381000 1.651000) (xy -0.254000 1.651000) (xy -0.254000 2.370667) (xy 0.000000 2.370667) (xy 0.000000 2.116382) (xy 0.639740 2.116382) (xy 0.640825 2.247403) (xy 0.649819 2.323481) 27 | (xy 0.669138 2.359450) (xy 0.701197 2.370144) (xy 0.718234 2.370667) (xy 0.762907 2.363094) (xy 0.789076 2.328477) (xy 0.801902 2.248969) (xy 0.806546 2.106722) (xy 0.806995 2.063750) 28 | (xy 0.809657 1.756834) (xy 0.925282 2.052947) (xy 1.003493 2.234435) (xy 1.069395 2.334346) (xy 1.130209 2.352525) (xy 1.193156 2.288819) (xy 1.265457 2.143073) (xy 1.305253 2.044834) 29 | (xy 1.434038 1.714500) (xy 1.436686 2.042584) (xy 1.441294 2.213538) (xy 1.453740 2.315011) (xy 1.477059 2.362052) (xy 1.502833 2.370667) (xy 1.531180 2.357408) (xy 1.549874 2.308709) 30 | (xy 1.560731 2.211184) (xy 1.561768 2.176884) (xy 1.693333 2.176884) (xy 1.711961 2.273024) (xy 1.776487 2.331466) (xy 1.899875 2.358870) (xy 2.055387 2.362827) (xy 2.319186 2.358331) 31 | (xy 2.296924 2.099916) (xy 2.289223 2.032000) (xy 2.370667 2.032000) (xy 2.393951 2.195527) (xy 2.469217 2.300829) (xy 2.604587 2.354632) (xy 2.772637 2.364903) (xy 3.005667 2.359530) 32 | (xy 3.005667 2.109488) (xy 3.126616 2.109488) (xy 3.170448 2.249706) (xy 3.198614 2.288705) (xy 3.301394 2.349116) (xy 3.440051 2.370399) (xy 3.576018 2.351261) (xy 3.658809 2.304143) 33 | (xy 3.712876 2.224729) (xy 3.725333 2.177143) (xy 3.697558 2.125467) (xy 3.639133 2.123436) (xy 3.587413 2.170258) (xy 3.583024 2.180167) (xy 3.525591 2.231543) (xy 3.432959 2.239115) 34 | (xy 3.337503 2.210086) (xy 3.271599 2.151664) (xy 3.259667 2.108200) (xy 3.298104 2.090247) (xy 3.397913 2.077968) (xy 3.510711 2.074334) (xy 3.761756 2.074334) (xy 3.724156 1.943231) 35 | (xy 3.665850 1.797925) (xy 3.583538 1.720428) (xy 3.457137 1.693975) (xy 3.424792 1.693334) (xy 3.299969 1.707874) (xy 3.219486 1.763122) (xy 3.188898 1.804318) (xy 3.132527 1.949051) 36 | (xy 3.126616 2.109488) (xy 3.005667 2.109488) (xy 3.005667 1.899432) (xy 3.003819 1.692418) (xy 2.997037 1.556530) (xy 2.983459 1.478286) (xy 2.961224 1.444202) (xy 2.942167 1.439334) 37 | (xy 4.148667 1.439334) (xy 4.148667 2.370667) (xy 4.466167 2.370667) (xy 4.633639 2.367340) (xy 4.731944 2.355320) (xy 4.776392 2.331543) (xy 4.783667 2.307167) (xy 4.764160 2.270295) 38 | (xy 4.703585 2.252954) (xy 4.863489 2.252954) (xy 4.870607 2.274365) (xy 4.897864 2.323928) (xy 4.945148 2.351945) (xy 5.033162 2.364071) (xy 5.182608 2.365961) (xy 5.205247 2.365773) 39 | (xy 5.369924 2.359911) (xy 5.463983 2.344233) (xy 5.501187 2.315855) (xy 5.503333 2.303324) (xy 5.479203 2.249500) (xy 5.461000 2.243667) (xy 5.437445 2.205468) (xy 5.428713 2.149676) 40 | (xy 5.537185 2.149676) (xy 5.538558 2.219197) (xy 5.569626 2.277141) (xy 5.640749 2.342389) (xy 5.750223 2.368543) (xy 5.814767 2.370667) (xy 5.938814 2.359345) (xy 6.029548 2.331080) 41 | (xy 6.045200 2.319867) (xy 6.099967 2.219003) (xy 6.080164 2.114790) (xy 5.994316 2.020121) (xy 5.850949 1.947887) (xy 5.787352 1.929962) (xy 5.711311 1.898465) (xy 5.694600 1.861426) 42 | (xy 5.748385 1.830157) (xy 5.830908 1.821446) (xy 5.902941 1.835083) (xy 5.926667 1.862667) (xy 5.962123 1.897062) (xy 6.011333 1.905000) (xy 6.084090 1.884732) (xy 6.082842 1.827444) 43 | (xy 6.029476 1.759857) (xy 5.937678 1.712949) (xy 5.809808 1.695238) (xy 5.683087 1.707178) (xy 5.594736 1.749221) (xy 5.589934 1.754503) (xy 5.543572 1.860682) (xy 5.576623 1.960868) 44 | (xy 5.683941 2.044862) (xy 5.750752 2.073149) (xy 5.859545 2.119907) (xy 5.924279 2.164188) (xy 5.932345 2.180167) (xy 5.895799 2.224504) (xy 5.814476 2.234289) (xy 5.720672 2.210020) 45 | (xy 5.668175 2.176102) (xy 5.585787 2.129779) (xy 5.537185 2.149676) (xy 5.428713 2.149676) (xy 5.422075 2.107264) (xy 5.418667 2.019300) (xy 5.409590 1.882619) (xy 5.386366 1.778121) 46 | (xy 5.367867 1.744134) (xy 5.276830 1.699435) (xy 5.154389 1.693548) (xy 5.027746 1.719990) (xy 4.924104 1.772277) (xy 4.870666 1.843926) (xy 4.868333 1.863192) (xy 4.898103 1.920773) 47 | (xy 4.962717 1.927815) (xy 5.019488 1.886907) (xy 5.085133 1.841821) (xy 5.169204 1.828898) (xy 5.236067 1.848842) (xy 5.253541 1.882272) (xy 5.217553 1.918678) (xy 5.127175 1.958096) 48 | (xy 5.098247 1.966939) (xy 4.950203 2.035835) (xy 4.869301 2.134752) (xy 4.863489 2.252954) (xy 4.703585 2.252954) (xy 4.695009 2.250499) (xy 4.560271 2.243792) (xy 4.529667 2.243667) 49 | (xy 4.275667 2.243667) (xy 4.275667 1.947334) (xy 4.508500 1.947334) (xy 4.648912 1.941633) (xy 4.721202 1.921629) (xy 4.741333 1.883834) (xy 4.720430 1.845539) (xy 4.647082 1.825824) 50 | (xy 4.508500 1.820334) (xy 4.375393 1.818201) (xy 4.306111 1.804225) (xy 4.279816 1.767039) (xy 4.275667 1.695276) (xy 4.275667 1.566334) (xy 4.529667 1.566334) (xy 4.677153 1.561457) 51 | (xy 4.756337 1.544169) (xy 4.783166 1.510485) (xy 4.783667 1.502834) (xy 4.767035 1.469339) (xy 4.706932 1.449678) (xy 4.588047 1.440788) (xy 4.466167 1.439334) (xy 4.148667 1.439334) 52 | (xy 2.942167 1.439334) (xy 2.893740 1.473819) (xy 2.878667 1.578036) (xy 2.873641 1.666905) (xy 2.842245 1.703209) (xy 2.759995 1.705160) (xy 2.713393 1.700976) (xy 2.547668 1.716473) 53 | (xy 2.434747 1.797570) (xy 2.377513 1.941481) (xy 2.370667 2.032000) (xy 2.289223 2.032000) (xy 2.275464 1.910668) (xy 2.243525 1.790756) (xy 2.190582 1.724846) (xy 2.106111 1.697608) 54 | (xy 2.017810 1.693334) (xy 1.854493 1.713605) (xy 1.761897 1.776127) (xy 1.735667 1.871134) (xy 1.756470 1.938026) (xy 1.810690 1.932418) (xy 1.862667 1.883834) (xy 1.934561 1.836550) 55 | (xy 2.022909 1.821679) (xy 2.094273 1.839841) (xy 2.116667 1.879122) (xy 2.078183 1.926252) (xy 1.978037 1.963425) (xy 1.957917 1.967577) (xy 1.803229 2.011171) (xy 1.719403 2.076166) 56 | (xy 1.693359 2.172908) (xy 1.693333 2.176884) (xy 1.561768 2.176884) (xy 1.565563 2.051447) (xy 1.566333 1.902056) (xy 1.565685 1.698086) (xy 1.561773 1.564532) (xy 1.551647 1.487146) 57 | (xy 1.532357 1.451677) (xy 1.500950 1.443877) (xy 1.472096 1.446973) (xy 1.419084 1.469518) (xy 1.369043 1.530382) (xy 1.312984 1.644163) (xy 1.246248 1.813815) (xy 1.114637 2.167130) 58 | (xy 0.986353 1.813815) (xy 0.921462 1.642527) (xy 0.872122 1.536874) (xy 0.828510 1.481717) (xy 0.780803 1.461916) (xy 0.757118 1.460500) (xy 0.712542 1.463666) (xy 0.683010 1.483094) 59 | (xy 0.664822 1.533683) (xy 0.654280 1.630329) (xy 0.647687 1.787930) (xy 0.644151 1.915584) (xy 0.639740 2.116382) (xy 0.000000 2.116382) (xy 0.000000 1.651000) (xy 0.127000 1.651000) 60 | (xy 0.217763 1.639610) (xy 0.250967 1.591190) (xy 0.254000 1.545167) (xy 0.250966 1.495067) (xy 0.231003 1.463960) (xy 0.177818 1.447320) (xy 0.075119 1.440622) (xy -0.093388 1.439339) 61 | (xy -0.127000 1.439334) (xy -0.307359 1.440176) (xy -0.419343 1.445721) (xy -0.479247 1.460495) (xy -0.503362 1.489023) (xy -0.507982 1.535830) (xy -0.508000 1.545167) (xy -1.185333 1.545167) 62 | (xy -1.185333 1.439334) (xy -1.439333 1.439334) (xy -4.114512 1.439334) (xy -4.033585 1.391258) (xy -3.771676 1.160798) (xy -3.695351 1.061767) (xy 1.142435 1.061767) (xy 1.491967 1.049467) 63 | (xy 1.841500 1.037167) (xy 1.947100 0.729094) (xy 2.052701 0.421020) (xy 2.599801 0.432760) (xy 3.146900 0.444500) (xy 3.249145 0.751417) (xy 3.351389 1.058334) (xy 4.060206 1.058334) 64 | (xy 3.961139 0.793750) (xy 3.921092 0.686653) (xy 3.856144 0.512799) (xy 3.770989 0.284758) (xy 3.670319 0.015100) (xy 3.558828 -0.283605) (xy 3.441209 -0.598788) (xy 3.407953 -0.687916) 65 | (xy 2.953832 -1.905000) (xy 2.260228 -1.905000) (xy 1.809116 -0.709083) (xy 1.689840 -0.392820) (xy 1.574934 -0.088035) (xy 1.469294 0.192275) (xy 1.377818 0.435113) (xy 1.305401 0.627481) 66 | (xy 1.256942 0.756383) (xy 1.250220 0.774300) (xy 1.142435 1.061767) (xy -3.695351 1.061767) (xy -3.568622 0.897338) (xy -3.551703 0.868698) (xy -3.474093 0.728663) (xy -3.438665 0.645848) 67 | (xy -3.442895 0.605572) (xy -3.484259 0.593155) (xy -3.504247 0.592667) (xy -3.594942 0.569179) (xy -3.674909 0.525836) (xy -3.725524 0.495876) (xy -3.772433 0.493205) (xy -3.833095 0.526164) 68 | (xy -3.924966 0.603090) (xy -4.021139 0.691217) (xy -4.306065 0.917918) (xy -4.597164 1.070104) (xy -4.914038 1.156855) (xy -5.069875 1.176928) (xy -5.237243 1.194766) (xy -5.341559 1.216102) 69 | (xy -5.404314 1.248989) (xy -5.447000 1.301480) (xy -5.459476 1.322917) (xy -5.500610 1.415061) (xy -6.900333 1.415061) (xy -6.900333 -0.777042) (xy -6.772709 -0.777042) (xy -6.733086 -0.434150) 70 | (xy -6.618301 -0.099414) (xy -6.437414 0.210347) (xy -6.199485 0.478314) (xy -6.019202 0.621658) (xy -5.845287 0.733278) (xy -5.727350 0.790262) (xy -5.658377 0.794550) (xy -5.646519 0.774156) 71 | (xy -5.542401 0.774156) (xy -5.524994 0.914930) (xy -5.474339 0.996614) (xy -5.389665 1.034386) (xy -5.246187 1.053572) (xy -5.067454 1.055242) (xy -4.877014 1.040468) (xy -4.698417 1.010318) 72 | (xy -4.555211 0.965863) (xy -4.529667 0.953681) (xy -4.401163 0.876318) (xy -4.260654 0.777794) (xy -4.221327 0.747233) (xy -4.061155 0.618543) (xy -4.205694 0.548238) (xy -4.295097 0.511283) 73 | (xy -4.379979 0.498969) (xy -4.491131 0.510392) (xy -4.619867 0.536056) (xy -4.932517 0.573899) (xy -5.171655 0.568320) (xy -5.324850 0.556945) (xy -5.416036 0.560595) (xy -5.467148 0.583278) 74 | (xy -5.499738 0.628282) (xy -5.542401 0.774156) (xy -5.646519 0.774156) (xy -5.631356 0.748078) (xy -5.630333 0.729086) (xy -5.606799 0.636851) (xy -5.567584 0.564252) (xy -5.540837 0.516315) 75 | (xy -5.541161 0.468518) (xy -5.576803 0.404113) (xy -5.656008 0.306354) (xy -5.743232 0.207489) (xy -5.961451 -0.070313) (xy -6.107785 -0.340189) (xy -6.190709 -0.620875) (xy -6.215743 -0.837097) 76 | (xy -6.230611 -0.985568) (xy -6.093192 -0.985568) (xy -6.088294 -0.807941) (xy -6.066743 -0.555475) (xy -6.019827 -0.356711) (xy -5.936885 -0.181972) (xy -5.807257 -0.001580) (xy -5.791912 0.017190) 77 | (xy -5.658320 0.179261) (xy -5.648145 0.158061) (xy -5.518243 0.158061) (xy -5.504906 0.286355) (xy -5.450238 0.390721) (xy -5.396517 0.429395) (xy -5.315456 0.444884) (xy -5.179773 0.452970) 78 | (xy -5.011724 0.454329) (xy -4.833568 0.449640) (xy -4.667562 0.439579) (xy -4.535964 0.424824) (xy -4.461031 0.406053) (xy -4.453660 0.400696) (xy -4.437582 0.339061) (xy -4.432047 0.221702) 79 | (xy -4.436123 0.110245) (xy -4.453552 -0.139343) (xy -4.896068 -0.112267) (xy -5.088490 -0.097112) (xy -5.254890 -0.077807) (xy -5.373452 -0.057226) (xy -5.415779 -0.043879) (xy -5.488963 0.037447) 80 | (xy -5.518243 0.158061) (xy -5.648145 0.158061) (xy -5.589898 0.036714) (xy -5.553310 -0.054089) (xy -5.542696 -0.140355) (xy -5.557259 -0.254374) (xy -5.580118 -0.359833) (xy -5.618871 -0.663302) 81 | (xy -5.616670 -0.755895) (xy -5.525642 -0.755895) (xy -5.511861 -0.545297) (xy -5.503359 -0.486833) (xy -5.481054 -0.346034) (xy -5.465770 -0.239090) (xy -5.461245 -0.195791) (xy -5.425200 -0.177669) 82 | (xy -5.337834 -0.183471) (xy -5.328708 -0.185208) (xy -5.183060 -0.205067) (xy -5.060489 -0.211666) (xy -4.924560 -0.211666) (xy -4.940144 -0.581585) (xy -4.367530 -0.581585) (xy -4.353349 -0.117970) 83 | (xy -4.345235 0.090477) (xy -4.333977 0.230915) (xy -4.316442 0.320003) (xy -4.289497 0.374398) (xy -4.254500 0.407540) (xy -4.130050 0.456886) (xy -3.991793 0.452633) (xy -3.872741 0.400004) 84 | (xy -3.819290 0.338667) (xy -3.796992 0.253115) (xy -3.783621 0.113272) (xy -3.778760 -0.057729) (xy -3.781994 -0.236754) (xy -3.792907 -0.400669) (xy -3.811082 -0.526339) (xy -3.835993 -0.590528) 85 | (xy -3.895663 -0.605827) (xy -4.011227 -0.609432) (xy -4.120515 -0.603445) (xy -4.367530 -0.581585) (xy -4.940144 -0.581585) (xy -4.943733 -0.666750) (xy -4.957959 -0.901890) (xy -4.978600 -1.063616) 86 | (xy -5.007426 -1.163054) (xy -5.028014 -1.195916) (xy -5.066840 -1.218315) (xy -4.878560 -1.218315) (xy -4.852280 -1.026582) (xy -4.836047 -0.890339) (xy -4.826809 -0.778289) (xy -4.826000 -0.752018) 87 | (xy -4.821350 -0.715811) (xy -4.797542 -0.693544) (xy -4.739787 -0.683501) (xy -4.633297 -0.683966) (xy -4.463285 -0.693225) (xy -4.417525 -0.696196) (xy -3.742034 -0.696196) (xy -3.739551 -0.574161) 88 | (xy -3.720519 -0.491898) (xy -3.691575 -0.335781) (xy -3.675179 -0.145590) (xy -3.672214 0.046601) (xy -3.683561 0.208719) (xy -3.699203 0.283309) (xy -3.704797 0.359078) (xy -3.649904 0.417486) 89 | (xy -3.610995 0.440364) (xy -3.474760 0.496933) (xy -3.364922 0.492722) (xy -3.264959 0.439209) (xy -3.216414 0.398714) (xy -3.188487 0.347754) (xy -3.176990 0.265512) (xy -3.177733 0.131171) 90 | (xy -3.181888 0.026459) (xy -3.216644 -0.271838) (xy -3.299084 -0.523162) (xy -3.440254 -0.756871) (xy -3.509857 -0.845083) (xy -3.632010 -0.991666) (xy -3.699984 -0.828981) (xy -3.742034 -0.696196) 91 | (xy -4.417525 -0.696196) (xy -4.370917 -0.699222) (xy -4.124312 -0.720805) (xy -3.955445 -0.748388) (xy -3.857520 -0.783195) (xy -3.841750 -0.794523) (xy -3.777863 -0.900244) (xy -3.769074 -1.031182) 92 | (xy -3.813118 -1.151652) (xy -3.867911 -1.206730) (xy -3.990599 -1.251679) (xy -4.175936 -1.274535) (xy -4.404549 -1.274217) (xy -4.651197 -1.250480) (xy -4.878560 -1.218315) (xy -5.066840 -1.218315) 93 | (xy -5.125063 -1.251904) (xy -5.255997 -1.268047) (xy -5.379435 -1.242971) (xy -5.430984 -1.209302) (xy -5.482922 -1.110672) (xy -5.515235 -0.951945) (xy -5.525642 -0.755895) (xy -5.616670 -0.755895) 94 | (xy -5.613312 -0.897135) (xy -5.602120 -1.050991) (xy -5.606109 -1.144353) (xy -5.629906 -1.200734) (xy -5.678135 -1.243647) (xy -5.682018 -1.246385) (xy -5.771182 -1.283949) (xy -3.748715 -1.283949) 95 | (xy -3.712944 -1.224093) (xy -3.696063 -1.203135) (xy -3.516637 -0.981528) (xy -3.383706 -0.811417) (xy -3.288555 -0.680112) (xy -3.222465 -0.574923) (xy -3.176722 -0.483157) (xy -3.145950 -0.402166) 96 | (xy -3.102473 -0.230139) (xy -3.073399 -0.034856) (xy -3.067594 0.051606) (xy -3.050565 0.234589) (xy -3.005624 0.348435) (xy -2.922588 0.406799) (xy -2.791270 0.423333) (xy -2.790306 0.423334) 97 | (xy -2.665288 0.408580) (xy -2.593856 0.356645) (xy -2.579788 0.333911) (xy -2.556470 0.241148) (xy -2.545147 0.083384) (xy -2.547179 -0.120383) (xy -2.547212 -0.121172) (xy -2.589833 -0.467209) 98 | (xy -2.691796 -0.765981) (xy -2.861440 -1.037809) (xy -2.980520 -1.176699) (xy -3.078035 -1.268463) (xy -3.201783 -1.367921) (xy -3.334202 -1.463234) (xy -3.457733 -1.542563) (xy -3.554813 -1.594067) 99 | (xy -3.607883 -1.605908) (xy -3.611775 -1.602281) (xy -3.634596 -1.558887) (xy -3.681606 -1.469609) (xy -3.696063 -1.442166) (xy -3.743088 -1.344436) (xy -3.748715 -1.283949) (xy -5.771182 -1.283949) 100 | (xy -5.823082 -1.305814) (xy -5.957436 -1.292305) (xy -6.033428 -1.241858) (xy -6.068509 -1.190544) (xy -6.087619 -1.111527) (xy -6.093192 -0.985568) (xy -6.230611 -0.985568) (xy -6.234804 -1.027430) 101 | (xy -6.274303 -1.146688) (xy -6.344981 -1.207906) (xy -6.457576 -1.224117) (xy -6.530908 -1.219619) (xy -6.651006 -1.177790) (xy -6.728403 -1.075559) (xy -6.766823 -0.906111) (xy -6.772709 -0.777042) 102 | (xy -6.900333 -0.777042) (xy -6.900333 -1.422909) (xy -5.831158 -1.422909) (xy -5.785342 -1.398041) (xy -5.765425 -1.397000) (xy -5.670807 -1.372725) (xy -5.606795 -1.337000) (xy -5.562272 -1.307950) 103 | (xy -5.521071 -1.300762) (xy -5.468477 -1.323313) (xy -5.389777 -1.383480) (xy -5.343145 -1.424705) (xy -5.215440 -1.424705) (xy -5.073637 -1.349018) (xy -4.970716 -1.303241) (xy -4.897012 -1.286516) 104 | (xy -4.888414 -1.287860) (xy -4.825491 -1.303943) (xy -4.708783 -1.330174) (xy -4.607194 -1.351755) (xy -4.425378 -1.377455) (xy -4.218124 -1.389628) (xy -4.101909 -1.388477) (xy -3.955234 -1.383771) 105 | (xy -3.869032 -1.392595) (xy -3.819277 -1.423144) (xy -3.781942 -1.483609) (xy -3.773657 -1.500412) (xy -3.736063 -1.599581) (xy -3.746108 -1.678134) (xy -3.773498 -1.733245) (xy -3.811260 -1.788390) 106 | (xy -3.862351 -1.822032) (xy -3.947804 -1.840677) (xy -4.088650 -1.850835) (xy -4.163500 -1.853914) (xy -4.483535 -1.834588) (xy -4.765086 -1.746374) (xy -5.026681 -1.582974) (xy -5.073637 -1.544619) 107 | (xy -5.215440 -1.424705) (xy -5.343145 -1.424705) (xy -5.270258 -1.489139) (xy -5.195065 -1.557422) (xy -4.894611 -1.777357) (xy -4.595195 -1.905000) (xy -1.439333 -1.905000) (xy -1.439333 1.058334) 108 | (xy -0.762000 1.058334) (xy -0.762000 -0.084666) (xy -0.383756 -0.084666) (xy -0.199283 -0.080022) (xy -0.035541 -0.067641) (xy 0.080379 -0.049856) (xy 0.105125 -0.042602) (xy 0.212793 0.040711) 109 | (xy 0.293186 0.199696) (xy 0.347372 0.436694) (xy 0.356901 0.508000) (xy 0.377508 0.674767) (xy 0.398672 0.835596) (xy 0.407652 0.899584) (xy 0.430775 1.058334) (xy 0.770250 1.058334) 110 | (xy 0.938513 1.056479) (xy 1.037279 1.048601) (xy 1.081680 1.031230) (xy 1.086847 1.000894) (xy 1.082261 0.986765) (xy 1.066567 0.915284) (xy 1.046882 0.781800) (xy 1.026286 0.608683) 111 | (xy 1.015211 0.499722) (xy 0.979096 0.222974) (xy 0.927239 0.014808) (xy 0.853986 -0.140257) (xy 0.753685 -0.257703) (xy 0.731804 -0.276468) (xy 0.627048 -0.362437) (xy 0.731458 -0.418316) 112 | (xy 0.872957 -0.538770) (xy 0.968652 -0.711627) (xy 1.018547 -0.918085) (xy 1.022645 -1.139342) (xy 0.980951 -1.356596) (xy 0.893467 -1.551045) (xy 0.760198 -1.703888) (xy 0.731208 -1.725626) 113 | (xy 0.639948 -1.783120) (xy 0.543967 -1.827037) (xy 0.430565 -1.859147) (xy 0.287045 -1.881219) (xy 0.100705 -1.895020) (xy -0.141153 -1.902320) (xy -0.451228 -1.904888) (xy -0.556651 -1.905000) 114 | (xy -1.439333 -1.905000) (xy -4.595195 -1.905000) (xy -4.563888 -1.918346) (xy -4.216151 -1.979197) (xy -4.024265 -2.000444) (xy -3.902346 -2.040674) (xy -3.836160 -2.109999) (xy -3.811471 -2.218531) 115 | (xy -3.810000 -2.267741) (xy -3.824480 -2.379008) (xy -3.876315 -2.452768) (xy -3.978100 -2.495475) (xy -4.142429 -2.513582) (xy -4.292818 -2.515176) (xy -4.672971 -2.472519) (xy -5.017242 -2.354909) 116 | (xy -5.320337 -2.165203) (xy -5.576963 -1.906256) (xy -5.674906 -1.769400) (xy -5.778029 -1.599999) (xy -5.829417 -1.487365) (xy -5.831158 -1.422909) (xy -6.900333 -1.422909) (xy -6.900333 -2.624666) 117 | (xy 6.900333 -2.624666) (xy 6.900333 -0.797278) )(layer F.SilkS) (width 0.010000) 118 | ) 119 | (fp_poly (pts (xy -0.650524 1.847160) (xy -0.621869 1.898776) (xy -0.613946 2.006601) (xy -0.613833 2.032000) (xy -0.618839 2.150717) (xy -0.642309 2.209204) (xy -0.696921 2.231700) (xy -0.719964 2.234903) 120 | (xy -0.821765 2.225027) (xy -0.878714 2.194686) (xy -0.923030 2.101551) (xy -0.925566 1.982837) (xy -0.887469 1.882822) (xy -0.870164 1.864601) (xy -0.781126 1.829395) (xy -0.711414 1.827667) 121 | (xy -0.650524 1.847160) )(layer F.SilkS) (width 0.010000) 122 | ) 123 | (fp_poly (pts (xy 2.089013 2.082086) (xy 2.112474 2.119057) (xy 2.109436 2.145247) (xy 2.056647 2.212161) (xy 1.975007 2.236254) (xy 1.890320 2.235914) (xy 1.866859 2.198944) (xy 1.869897 2.172754) 124 | (xy 1.922686 2.105840) (xy 2.004326 2.081747) (xy 2.089013 2.082086) )(layer F.SilkS) (width 0.010000) 125 | ) 126 | (fp_poly (pts (xy 2.801214 1.853135) (xy 2.867668 1.948244) (xy 2.878667 2.032000) (xy 2.849483 2.149116) (xy 2.777380 2.224129) (xy 2.685526 2.249798) (xy 2.597090 2.218883) (xy 2.540000 2.137834) 127 | (xy 2.520332 2.008303) (xy 2.553427 1.897438) (xy 2.628466 1.830014) (xy 2.678652 1.820334) (xy 2.801214 1.853135) )(layer F.SilkS) (width 0.010000) 128 | ) 129 | (fp_poly (pts (xy 3.517770 1.850867) (xy 3.556000 1.883834) (xy 3.577842 1.923492) (xy 3.546327 1.942201) (xy 3.446794 1.947290) (xy 3.429000 1.947334) (xy 3.320016 1.943421) (xy 3.280868 1.926798) 130 | (xy 3.296894 1.890134) (xy 3.302000 1.883834) (xy 3.382717 1.829624) (xy 3.429000 1.820334) (xy 3.517770 1.850867) )(layer F.SilkS) (width 0.010000) 131 | ) 132 | (fp_poly (pts (xy 5.277409 2.091822) (xy 5.280946 2.142461) (xy 5.240867 2.192867) (xy 5.154604 2.237730) (xy 5.062227 2.233468) (xy 5.013575 2.196600) (xy 5.016466 2.139685) (xy 5.083118 2.094531) 133 | (xy 5.192653 2.075026) (xy 5.196417 2.074982) (xy 5.277409 2.091822) )(layer F.SilkS) (width 0.010000) 134 | ) 135 | (fp_poly (pts (xy -0.056403 -1.349324) (xy 0.119231 -1.328581) (xy 0.234564 -1.285368) (xy 0.301573 -1.212614) (xy 0.332235 -1.103248) (xy 0.338667 -0.975090) (xy 0.330438 -0.837770) (xy 0.297258 -0.750569) 136 | (xy 0.227124 -0.680406) (xy 0.164802 -0.639839) (xy 0.089219 -0.613909) (xy -0.019132 -0.599506) (xy -0.179760 -0.593518) (xy -0.323209 -0.592666) (xy -0.762000 -0.592666) (xy -0.762000 -1.354666) 137 | (xy -0.304316 -1.354666) (xy -0.056403 -1.349324) )(layer F.SilkS) (width 0.010000) 138 | ) 139 | (fp_poly (pts (xy 2.598850 -1.070724) (xy 2.633873 -0.987415) (xy 2.683311 -0.860087) (xy 2.740575 -0.706751) (xy 2.799076 -0.545419) (xy 2.852225 -0.394103) (xy 2.893432 -0.270815) (xy 2.916107 -0.193568) 140 | (xy 2.918500 -0.179916) (xy 2.891618 -0.151135) (xy 2.801450 -0.134079) (xy 2.638691 -0.127273) (xy 2.584870 -0.127000) (xy 2.248740 -0.127000) (xy 2.415537 -0.594584) (xy 2.481212 -0.780536) 141 | (xy 2.535160 -0.936779) (xy 2.571624 -1.046403) (xy 2.584833 -1.092001) (xy 2.598850 -1.070724) )(layer F.SilkS) (width 0.010000) 142 | ) 143 | ) 144 | -------------------------------------------------------------------------------- /Hardware/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name bast-wan)(type KiCad)(uri ${KIPRJMOD}/bast-wan.pretty)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /Hardware/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name Bast_WAN-rescue)(type Legacy)(uri ${KIPRJMOD}/Bast_WAN-rescue.lib)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /LICENSE_HARDWARE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BastWAN 2 | 3 | BastWAN is all the best in the world format Feather and LoRa with a RAK4260 core, 32 bits of power!, Feather pin to pin compatible with a micro USB port. 4 | 5 | BastWAN is supported in the [Arduino development environment](https://github.com/ElectronicCats/ArduinoCore-samd) and [RIOT OS on BastWan and LowPower](https://github.com/h-filzer/samr34-lorawan-smt50). 6 | 7 | We love all our Feathers equally, but this Feather is very special. 8 | 9 | That doesn't mean you cant also use it with Arduino IDE! At the Bast's heart is an RAK4260 ARM Cortex M0+ processor, clocked at 48 MHz and at 3.3V logic, the same one used in the new Arduino Zero. This chip has a whopping 256K of FLASH (8x more than the Atmega328 or 32u4) and 32K of RAM (16x as much)! This chip comes with built in USB so it has USB-to-Serial program & debug capability built in with no need for an FTDI-like chip. 10 | 11 | Here's some handy specs! 12 | 13 | - Light as a (large?) feather - 5 grams 14 | - RAK4260 @ 48MHz with 3.3V logic/power 15 | - 256KB of FLASH + 32KB of RAM 16 | - No EEPROM 17 | - 32.768 KHz crystal for clock generation & RTC 18 | - 3.3V regulator with 500mA peak current output 19 | - USB native support, comes with USB bootloader and serial port debugging 20 | - You also get tons of pins - 20 GPIO pins 21 | - Hardware Serial, hardware I2C, hardware SPI support 22 | - PWM outputs on all pins 23 | - 6 x 12-bit analog inputs 24 | - 1 x 10-bit analog ouput (DAC) 25 | - Built in 100mA lipoly charger with charging status indicator LED 26 | - Pin #13 red LED for general purpose blinking 27 | - Power/enable pin 28 | - 4 mounting holes 29 | - Reset button 30 | 31 | ### LoRa Features 32 | 33 | - Industry's lowest power LoRa® SiP device 34 | - Fully supported 862 to 1020 MHz frequency coverage 35 | - Receive Sensitivity down to -148 dBm 36 | - Maximum Transmit Power up to 20 dBm 37 | - Low RX current of 17mA (typical)  LoRa Technology, (G)FSK, (G)MSK 38 | 39 | The Bast WAN uses the extra space left over to add a Cryptographic chip ATECC608A. 40 | 41 | Easy reprogramming: the Bast-WAN comes pre-loaded with the UF2 bootloader, which looks like a USB storage key. Simply drag firmware on to program, no special tools or drivers needed! It can be used to load up CircuitPython, PXT MakeCode or Arduino IDE (it is bossa-compatible) 42 | 43 | Comes fully assembled and tested, with the UF2 USB bootloader. We also toss in some header so you can solder it in and plug into a solderless breadboard. 44 | 45 | Lipoly battery and USB cable not included (but we do have lots of options in the shop if you'd like!) 46 | 47 | 48 | 49 | 50 | 51 | ## Wiki and Getting Started 52 | 53 | [Getting Started in our Wiki](https://github.com/ElectronicCats/BastWAN/wiki) 54 | 55 | 56 | 57 | ## Links & References 58 | 59 | * [Hackster Blog post](https://www.hackster.io/electronic-cats/how-to-use-rak4260-with-arduino-ide-4bcff2) 60 | * [Additional Boards Manager to install BastWan in Arduino IDE](https://electroniccats.github.io/Arduino_Boards_Index/package_electroniccats_index.json) 61 | * [LoRa library](https://github.com/sandeepmistry/arduino-LoRa) 62 | * [Bast-Wan repository](https://github.com/ElectronicCats/Bast-WAN) 63 | * [Kongduino's blog post](https://kongduino.wordpress.com/2020/07/24/bastwan/) 64 | 65 | # License 66 | 67 | ![OpenSourceLicense](https://github.com/ElectronicCats/AjoloteBoard/raw/master/OpenSourceLicense.png) 68 | 69 | Electronic Cats invests time and resources providing this open source design, please support Electronic Cats and open-source hardware by purchasing products from Electronic Cats! 70 | 71 | Designed by Electronic Cats. 72 | 73 | Firmware released under an GNU AGPL v3.0 license. See the LICENSE file for more information. 74 | 75 | Hardware released under an CERN Open Hardware Licence v1.2. See the LICENSE_HARDWARE file for more information. 76 | 77 | Electronic Cats is a registered trademark, please do not use if you sell these PCBs. 78 | 79 | November 2019 80 | -------------------------------------------------------------------------------- /datasheet_bastwan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElectronicCats/BastWAN/a7a20c527d667776def65a42b2737b9515827c59/datasheet_bastwan.pdf --------------------------------------------------------------------------------