├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT_EC.md │ ├── Feedback-request.md │ └── config.yml └── stale.yml ├── .gitignore ├── Firmware ├── HunterCatNFC_P2P │ └── HunterCatNFC_P2P.ino ├── hunterCatNFC_AllOne │ └── hunterCatNFC_AllOne.ino └── huntercat_nfc_detect_readers │ ├── binary │ └── hunterCatNFC_TestV1.3.0_wBootloader.bin │ └── huntercat_nfc_detect_readers.ino ├── Hardware ├── Case │ ├── Case.SLDASM │ ├── Case.kicad_pcb │ ├── Case.pro │ ├── Case.sch │ ├── Case.step │ ├── GATOHUNTER.kicad_mod │ ├── Ilustracion Final HC-NFC.kicad_mod │ ├── LADOB_1.kicad_mod │ └── fp-info-cache ├── HunterCat-NFC.DXF ├── HunterCat-NFC.SLDPRT └── HunterCat-NFC │ ├── Ensamblaje14.SLDASM │ ├── HunterCat-NFC-cache.lib │ ├── HunterCat-NFC-rescue.dcm │ ├── HunterCat-NFC-rescue.lib │ ├── HunterCat-NFC.csv │ ├── HunterCat-NFC.kicad_pcb │ ├── HunterCat-NFC.kicad_prl │ ├── HunterCat-NFC.kicad_pro │ ├── HunterCat-NFC.kicad_sch │ ├── HunterCat-NFC.net │ ├── HunterCat-NFC.pdf │ ├── HunterCat-NFC.pro │ ├── HunterCat-NFC.sch │ ├── HunterCat-NFC.xml │ ├── _autosave-HunterCat-NFC.sch │ ├── fp-info-cache │ ├── fp-lib-table │ ├── library │ ├── hunter-cat-nfc.dcm │ ├── hunter-cat-nfc.lib │ └── hunter-cat-nfc.pretty │ │ ├── KSC941JLFS.kicad_mod │ │ ├── Micro_interruptor_SPDT.kicad_mod │ │ ├── NFC-antenna30.4x30.4mm.kicad_mod │ │ ├── NFC-antenna40x40mm.kicad_mod │ │ ├── NFCAntennaTest.kicad_mod │ │ ├── NFC_ANTENNA2.kicad_mod │ │ ├── PSON50P200X300X50-9N.kicad_mod │ │ ├── RP2040-QFN-56.kicad_mod │ │ └── W25Q16JVUUIQ.kicad_mod │ └── sym-lib-table ├── LICENSE ├── LICENSE_HARDWARE └── README.md /.github/ISSUE_TEMPLATE/BUG_REPORT_EC.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F640 Bug report " 3 | about: Report a bug or unexpected behavior while using the HunterCatNFC Board. 4 | title: 'ElectronicCats' 5 | labels: bug 6 | --- 7 | 8 | **Please, before reporting any issue** 9 | - Make sure your board it's in good condition. 10 | - Verify that it really is a board problem and not a hardware problem. 11 | - **Avoid** to submit a GitHub issue for project troubleshooting. 12 | 13 | Any feedback/suggestions should be discussed on the [feedback section](https://github.com/ElectronicCats/HunterCatNFC/issues): 14 | * Just click on New Issue and select the correct category. 15 | 16 | When reporting any issue, please try to provide all relevant information to help on its resolution. 17 | 18 | 19 | **Describe the problem:** 20 | A clear and concise description of what the problem is. 21 | The more detailed this is, the easier we can come up with a solution. 22 | 23 | 24 | **To Reproduce:** 25 | Explanation of the steps you followed and how your problem arose. 26 | If you think it is absolutely necessary, mention in detail what you modified. 27 | 28 | 29 | **Expected behavior:** 30 | A clear and concise description of what you expected to happen. 31 | 32 | **Screenshots:** 33 | If applicable, add screenshots or photos to help explain your problem. 34 | 35 | **To help us to understand your situation, we would like to ask you for the following additional information:** 36 | - What Operating System and version are you using (e.g. Windows 11, macOS 12.0, Linux)? 37 | - In case you are using the Arduino IDE, What version of the Arduino IDE? 38 | - Did it work before?, If it worked before, what were the parameters that you modify? 39 | 40 | 41 | **Additional context:** 42 | Add any other context about the problem here that you think will help us to solve your problem. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feedback-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F408 Feddback or requests" 3 | about: Suggest an idea or improvement for this project 4 | title: 'ElectronicCats' 5 | labels: 'enhancement' 6 | --- 7 | 8 | **What idea or improvement has occurred to you?** 9 | 10 | **If you found an error:** 11 | 12 | Please describe clearly and concisely the problem you are aware of. 13 | 14 | 15 | **Have you already found a solution?** 16 | 17 | If you found a way to fix the problem please let us know. 18 | It would be very helpful if you put how it needs to be corrected. 19 | 20 | ***Thanks a lot*** -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: See if your issue is solved before creating a new one. 4 | about: Try to see if ther is an answer for yoru questions before you create a new issue. 5 | url: https://github.com/ElectronicCats/HunterCatNFC/issues?q=is%3Aissue+is%3Aclosed 6 | - name: ElectronicCats 7 | about: Contact us through our website 8 | url: https://electroniccats.com/contact/ -------------------------------------------------------------------------------- /.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 | *.sch-bak 3 | 4 | .DS_Store 5 | 6 | *.kicad_pcb-bak 7 | 8 | HunterCat-NFC/Case/.svg2shenzhen-cache/ 9 | 10 | Hardware/HunterCat-NFC/HunterCat-NFC-backups/ 11 | -------------------------------------------------------------------------------- /Firmware/HunterCatNFC_P2P/HunterCatNFC_P2P.ino: -------------------------------------------------------------------------------- 1 | /** 2 | * Example to detect P2P device 3 | * Authors: 4 | * Salvador Mendoza - @Netxing - salmg.net 5 | * For Electronic Cats - electroniccats.com 6 | * 7 | * March 2020 8 | * 9 | * This code is beerware; if you see me (or any other collaborator 10 | * member) at the local, and you've found our code helpful, 11 | * please buy us a round! 12 | * Distributed as-is; no warranty is given. 13 | */ 14 | 15 | #include "Electroniccats_PN7150.h" 16 | #ifdef ARDUINO_ARCH_SAMD 17 | #include "SdFat.h" 18 | #include "Adafruit_SPIFlash.h" 19 | #endif 20 | 21 | #ifdef ARDUINO_ARCH_SAMD 22 | #define PN7150_IRQ (15) 23 | #define PN7150_VEN (14) 24 | #else 25 | #define PN7150_IRQ (18) 26 | #define PN7150_VEN (17) 27 | #endif 28 | 29 | #define PN7150_ADDR (0x28) 30 | 31 | #ifdef ARDUINO_ARCH_RP2040 32 | 33 | #define PIN_LED 8 34 | #define PIN_LED2 9 35 | #define PIN_LED3 10 36 | 37 | #define BUTTON_0 19 38 | #define BUTTON_1 20 39 | #define BUTTON_2 21 40 | #endif 41 | 42 | Electroniccats_PN7150 nfc(PN7150_IRQ, PN7150_VEN, PN7150_ADDR); // creates a global NFC device interface object, attached to pins 7 (IRQ) and 8 (VEN) and using the default I2C address 0x28 43 | RfIntf_t RfInterface; //Intarface to save data for multiple tags 44 | 45 | #ifdef ARDUINO_ARCH_SAMD 46 | Adafruit_FlashTransport_SPI flashTransport(EXTERNAL_FLASH_USE_CS, EXTERNAL_FLASH_USE_SPI); 47 | 48 | Adafruit_SPIFlash flash(&flashTransport); 49 | #endif 50 | 51 | uint8_t mode = 3; // modes: 1 = Reader/ Writer, 2 = Emulation, 3 = Peer to peer P2P 52 | 53 | void ResetMode(){ //Reset the configuration mode after each reading 54 | Serial.println("Re-initializing..."); 55 | nfc.ConfigMode(mode); 56 | nfc.StartDiscovery(mode); 57 | } 58 | 59 | void RGB(int R, int G, int B) 60 | { 61 | int g = map(G, 0, 255, 0, 1023); 62 | 63 | analogWrite(PIN_LED, R); 64 | analogWrite(PIN_LED2, B); 65 | analogWrite(PIN_LED3, g); 66 | } 67 | 68 | void setup(){ 69 | Serial.begin(9600); 70 | while(!Serial); 71 | 72 | #ifdef ARDUINO_ARCH_SAMD 73 | // Initialize flash library and check its chip ID. 74 | if (!flash.begin()) { 75 | Serial.println("Error, failed to initialize flash chip!"); 76 | while (1) { 77 | blink(LED_BUILTIN, 600, 3);; 78 | } 79 | } 80 | Serial.print("Flash chip JEDEC ID: 0x"); Serial.println(flash.getJEDECID(), HEX); 81 | #endif 82 | 83 | Serial.println("Initializing..."); 84 | if (nfc.connectNCI()) { //Wake up the board 85 | Serial.println("Error while setting up the mode, check connections!"); 86 | while (1); 87 | } 88 | 89 | if (nfc.ConfigureSettings()) { 90 | Serial.println("The Configure Settings failed!"); 91 | while (1); 92 | } 93 | 94 | if(nfc.ConfigMode(mode)){ //Set up the configuration mode 95 | Serial.println("The Configure Mode failed!!"); 96 | while (1); 97 | } 98 | nfc.StartDiscovery(mode); //NCI Discovery mode 99 | Serial.println("Detect P2P devices with PN7150"); 100 | Serial.println("Waiting for P2P device..."); 101 | } 102 | 103 | void loop(){ 104 | int analog = analogRead(A0); 105 | int voltagepercent = map(analog, 0, 645, 0, 100 ); 106 | 107 | 108 | 109 | if(!nfc.WaitForDiscoveryNotification(&RfInterface)){ // Waiting to detect 110 | if (RfInterface.Interface == INTF_NFCDEP){ 111 | if ((RfInterface.ModeTech & MODE_LISTEN) == MODE_LISTEN){ 112 | //Serial.println(" - P2P TARGET MODE: Activated from remote Initiator"); 113 | Serial.println("Listening "); 114 | RGB(255,0,0); 115 | } 116 | else{ 117 | //Serial.println(" - P2P INITIATOR MODE: Remote Target activated"); 118 | Serial.println("Talking "); 119 | RGB(0,0,255); 120 | } 121 | /* Process with SNEP for NDEF exchange */ 122 | nfc.ProcessP2pMode(RfInterface); 123 | } 124 | ResetMode(); 125 | RGB(0,0,0); 126 | Serial.println("Peer lost!"); 127 | } 128 | 129 | delay(500); 130 | 131 | //Low Battery < 30% 132 | if (voltagepercent < 30) { 133 | RGB(234, 200, 203); //Pink 134 | delay(100); 135 | RGB(0, 0, 0); 136 | delay(100); 137 | } 138 | } 139 | -------------------------------------------------------------------------------- /Firmware/hunterCatNFC_AllOne/hunterCatNFC_AllOne.ino: -------------------------------------------------------------------------------- 1 | /** 2 | Example to detect NFC readers, read and clone UID a Mifare Card, read a Visa card 3 | and emulate a Visa MSD card. 4 | 5 | Authors: 6 | Salvador Mendoza - @Netxing - salmg.net 7 | Andrés Sabas - @sabasacustico 8 | For Electronic Cats - electroniccats.com 9 | 10 | January 2021 11 | 12 | This code is beerware; if you see me (or any other collaborator 13 | member) at the local, and you've found our code helpful, 14 | please buy us a round! 15 | Distributed as-is; no warranty is given. 16 | */ 17 | #include "Electroniccats_PN7150.h" 18 | #ifdef ARDUINO_ARCH_SAMD 19 | #include "SdFat.h" 20 | #include "Adafruit_SPIFlash.h" 21 | #endif 22 | 23 | //#define DEBUG 24 | 25 | #ifdef ARDUINO_ARCH_SAMD 26 | #define PN7150_IRQ (15) 27 | #define PN7150_VEN (14) 28 | #else 29 | #define PN7150_IRQ (18) 30 | #define PN7150_VEN (17) 31 | #endif 32 | 33 | #define PN7150_ADDR (0x28) 34 | 35 | #ifdef ARDUINO_ARCH_RP2040 36 | 37 | #define PIN_LED 8 38 | #define PIN_LED2 9 39 | #define PIN_LED3 10 40 | 41 | #define BUTTON_0 19 42 | #define BUTTON_1 20 43 | #define BUTTON_2 21 44 | #endif 45 | 46 | #define KEY_MFC 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF // Default Mifare Classic key 47 | 48 | Electroniccats_PN7150 nfc(PN7150_IRQ, PN7150_VEN, PN7150_ADDR); // creates a global NFC device interface object, attached to pins 7 (IRQ) and 8 (VEN) and using the default I2C address 0x28 49 | RfIntf_t RfInterface; 50 | 51 | #ifdef ARDUINO_ARCH_SAMD 52 | Adafruit_FlashTransport_SPI flashTransport(EXTERNAL_FLASH_USE_CS, EXTERNAL_FLASH_USE_SPI); 53 | 54 | Adafruit_SPIFlash flash(&flashTransport); 55 | #endif 56 | 57 | uint8_t mode = 2; // modes: 1 = Reader/ Writer, 2 = Emulation 58 | 59 | unsigned char STATUSOK[] = {0x90, 0x00}, Cmd[256], CmdSize; 60 | 61 | uint8_t uidcf[20] = { 62 | 0x20, 0x02, 0x05, 0x01, /* CORE_SET_CONFIG_CMD */ 63 | 0x00, 0x02, 0x00, 0x01 /* TOTAL_DURATION */ 64 | }; 65 | uint8_t uidlen = 0; 66 | 67 | // Token = data to be use it as track 2 68 | // 4412345605781234 = card number in this case 69 | uint8_t token[19] = {0x44, 0x12, 0x34, 0x56, 0x05 , 0x78, 0x12, 0x34, 0xd1, 0x71, 0x12, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x99, 0x1f}; 70 | 71 | //Visa MSD emulation variables 72 | uint8_t apdubuffer[255] = {}, apdulen; 73 | uint8_t ppsea[] = {0x6F, 0x23, 0x84, 0x0E, 0x32, 0x50, 0x41, 0x59, 0x2E, 0x53, 0x59, 0x53, 0x2E, 0x44, 0x44, 0x46, 0x30, 0x31, 0xA5, 0x11, 0xBF, 0x0C, 0x0E, 0x61, 0x0C, 0x4F, 0x07, 0xA0, 0x00, 0x00, 0x00, 0x03, 0x10, 0x10, 0x87, 0x01, 0x01, 0x90, 0x00}; 74 | uint8_t visaa[] = {0x6F, 0x1E, 0x84, 0x07, 0xA0, 0x00, 0x00, 0x00, 0x03, 0x10, 0x10, 0xA5, 0x13, 0x50, 0x0B, 0x56, 0x49, 0x53, 0x41, 0x20, 0x43, 0x52, 0x45, 0x44, 0x49, 0x54, 0x9F, 0x38, 0x03, 0x9F, 0x66, 0x02, 0x90, 0x00}; 75 | uint8_t processinga[] = {0x80, 0x06, 0x00, 0x80, 0x08, 0x01, 0x01, 0x00, 0x90, 0x00}; 76 | uint8_t last [4] = {0x70, 0x15, 0x57, 0x13}; 77 | uint8_t card[25] = {}; 78 | uint8_t statusapdu[2] = {0x90, 0x00}; 79 | uint8_t finished[] = {0x6f, 0x00}; 80 | 81 | boolean detectCardFlag = false; 82 | 83 | uint8_t ppdol[255] = {0x80, 0xA8, 0x00, 0x00, 0x02, 0x83, 0x00}; 84 | 85 | void resetMode() { //Reset the configuration mode after each reading 86 | Serial.println("Reset..."); 87 | if (nfc.connectNCI()) { //Wake up the board 88 | Serial.println("Error while setting up the mode, check connections!"); 89 | while (1); 90 | } 91 | 92 | //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 93 | 94 | if (nfc.ConfigureSettings(uidcf, uidlen)) { 95 | Serial.println("The Configure Settings failed!"); 96 | while (1); 97 | } 98 | 99 | if (nfc.ConfigMode(mode)) { //Set up the configuration mode 100 | Serial.println("The Configure Mode failed!!"); 101 | while (1); 102 | } 103 | 104 | nfc.StartDiscovery(mode); //NCI Discovery mode 105 | } 106 | 107 | void RGB(int R, int G, int B) 108 | { 109 | int g = map(G, 0, 255, 0, 1023); 110 | 111 | analogWrite(PIN_LED,R); 112 | analogWrite(PIN_LED2,B); 113 | analogWrite(PIN_LED3,g); 114 | } 115 | 116 | void blink(int pin, int msdelay, int times) { 117 | for (int i = 0; i < times; i++) { 118 | digitalWrite(pin, HIGH); 119 | delay(msdelay); 120 | digitalWrite(pin, LOW); 121 | delay(msdelay); 122 | } 123 | } 124 | 125 | //Print hex data buffer in format 126 | void printBuf(const byte * data, const uint32_t numBytes) { 127 | uint32_t szPos; 128 | for (szPos = 0; szPos < numBytes; szPos++) { 129 | Serial.print(F("0x")); 130 | // Append leading 0 for small values 131 | if (data[szPos] <= 0xF) 132 | Serial.print(F("0")); 133 | 134 | Serial.print(data[szPos] & 0xff, HEX); 135 | if ((numBytes > 1) && (szPos != numBytes - 1)) { 136 | Serial.print(F(" ")); 137 | } 138 | } 139 | Serial.println(); 140 | } 141 | /* 142 | treatPDOL function: 143 | Make a right format challenge using the card PDOL to extract more data(track 2) 144 | Note: This challenge only follows the format, do not use it as real challenge generator 145 | */ 146 | uint8_t treatPDOL(uint8_t* apdu) { 147 | uint8_t plen = 7; 148 | Serial.println(""); 149 | //PDOL Format: 80 A8 00 00 + (Tamaño del PDOL+2) + 83 + Tamaño del PDOL + PDOL + 00 150 | for (uint8_t i = 1; i <= apdu[0]; i++) { 151 | if (apdu[i] == 0x9F && apdu[i + 1] == 0x66) { 152 | ppdol[plen] = 0xF6; 153 | ppdol[plen + 1] = 0x20; 154 | ppdol[plen + 2] = 0xC0; 155 | ppdol[plen + 3] = 0x00; 156 | plen += 4; 157 | i += 2; 158 | } 159 | else if (apdu[i] == 0x9F && apdu[i + 1] == 0x1A) { 160 | ppdol[plen] = 0x9F; 161 | ppdol[plen + 1] = 0x1A; 162 | plen += 2; 163 | i += 2; 164 | } 165 | else if (apdu[i] == 0x5F && apdu[i + 1] == 0x2A) { 166 | ppdol[plen] = 0x5F; 167 | ppdol[plen + 1] = 0x2A; 168 | plen += 2; 169 | i += 2; 170 | } 171 | else if (apdu[i] == 0x9A) { 172 | ppdol[plen] = 0x9A; 173 | ppdol[plen + 1] = 0x9A; 174 | ppdol[plen + 2] = 0x9A; 175 | plen += 3; 176 | i += 1; 177 | } 178 | else if (apdu[i] == 0x95) { 179 | ppdol[plen] = 0x95; 180 | ppdol[plen + 1] = 0x95; 181 | ppdol[plen + 2] = 0x95; 182 | ppdol[plen + 3] = 0x95; 183 | ppdol[plen + 4] = 0x95; 184 | plen += 5; 185 | i += 1; 186 | } 187 | else if (apdu[i] == 0x9C) { 188 | ppdol[plen] = 0x9C; 189 | plen += 1; 190 | i += 1; 191 | } 192 | else if (apdu[i] == 0x9F && apdu[i + 1] == 0x37) { 193 | ppdol[plen] = 0x9F; 194 | ppdol[plen + 1] = 0x37; 195 | ppdol[plen + 2] = 0x9F; 196 | ppdol[plen + 3] = 0x37; 197 | plen += 4; 198 | i += 2; 199 | } 200 | else { 201 | uint8_t u = apdu[i + 2]; 202 | while (u > 0) { 203 | ppdol[plen] = 0; 204 | plen += 1; 205 | u--; 206 | } 207 | i += 2; 208 | } 209 | } 210 | ppdol[4] = (plen + 2) - 7; // Length of PDOL + 2 211 | ppdol[6] = plen - 7; // Real length 212 | plen++; // +1 because the last 0 213 | ppdol[plen] = 0x00; // Add the last 0 to the challenge 214 | return plen; 215 | } 216 | 217 | void printData(uint8_t* buff, uint8_t lenbuffer, uint8_t cmd) { 218 | char tmp[1]; 219 | if (cmd == 1) 220 | Serial.print("\nCommand: "); 221 | else if (cmd == 2) 222 | Serial.print("\nReader command: "); 223 | else if (cmd == 3) 224 | Serial.print("\nHunter Cat answer: "); 225 | else 226 | Serial.print("\nCard answer: "); 227 | 228 | for (uint8_t u = 0; u < lenbuffer; u++) { 229 | sprintf(tmp, "0x%.2X", buff[u]); 230 | Serial.print(tmp); Serial.print(" "); 231 | } 232 | } 233 | 234 | //Find Track 2 in the NFC reading transaction 235 | void seekTrack2() { 236 | bool chktoken = false, existpdol = false; 237 | uint8_t apdubuffer[255] = {}, apdulen; 238 | 239 | uint8_t ppse[] = {0x00, 0xA4, 0x04, 0x00, 0x0e, 0x32, 0x50, 0x41, 0x59, 0x2e, 0x53, 0x59, 0x53, 0x2e, 0x44, 0x44, 0x46, 0x30, 0x31, 0x00}; //20 240 | uint8_t visa[] = {0x00, 0xA4, 0x04, 0x00, 0x07, 0xa0, 0x00, 0x00, 0x00, 0x03, 0x10, 0x10, 0x00}; //13 241 | uint8_t processing [] = {0x80, 0xA8, 0x00, 0x00, 0x02, 0x83, 0x00, 0x00}; //8 242 | uint8_t sfi[] = {0x00, 0xb2, 0x01, 0x0c, 0x00}; //5 243 | 244 | uint8_t *apdus[] = {ppse, visa, processing, sfi}; 245 | uint8_t apdusLen [] = { sizeof(ppse), sizeof(visa), sizeof(processing), sizeof(sfi)}; 246 | 247 | uint8_t pdol[50], plen = 8; 248 | 249 | for (uint8_t i = 0; i < 4; i++) { 250 | //blink(L2, 150, 1); 251 | nfc.CardModeSend(apdus[i], apdusLen[i]); 252 | 253 | while (nfc.CardModeReceive(apdubuffer, &apdulen) != 0) { } 254 | 255 | if (nfc.CardModeReceive(apdubuffer, &apdulen) == 0) { 256 | printData(apdus[i], apdusLen[i], 1); 257 | printData(apdubuffer, apdulen, 4); 258 | for (uint8_t u = 0; u < apdulen; u++) { 259 | if (i == 1) { 260 | if (apdubuffer[u] == 0x9F && apdubuffer[u + 1] == 0x38) { 261 | for (uint8_t e = 0; e <= apdubuffer[u + 2]; e++) 262 | pdol[e] = apdubuffer[u + e + 2]; 263 | 264 | plen = treatPDOL(pdol); 265 | apdus[2] = ppdol; 266 | apdusLen[2] = plen; 267 | existpdol = true; 268 | } 269 | } 270 | else if (i == 3) { 271 | if (apdubuffer[u] == 0x57 && apdubuffer[u + 1] == 0x13 && !chktoken) { 272 | chktoken = true; 273 | memcpy(&token, &apdubuffer[u + 2], 19); 274 | break; 275 | } 276 | } 277 | } 278 | if (i == 1) { 279 | char tmp[1]; 280 | Serial.print("\nFull challenge: "); 281 | for (uint8_t b = 0; b < plen; b++) { 282 | sprintf(tmp, "0x%.2X", existpdol ? ppdol[b] : processing[b]); 283 | Serial.print(tmp); Serial.print(" "); 284 | } 285 | Serial.println(""); 286 | } 287 | Serial.println(""); 288 | } 289 | else 290 | Serial.println("Error reading the card!"); 291 | 292 | } 293 | } 294 | 295 | // Read Mifare Classic 1K 296 | void readingmifare(void) { 297 | uint8_t success = 1; // Flag to check if there was an error 298 | uint8_t currentblock = 0; // Counter to keep track of which block we're on 299 | bool authenticated = false; // Flag to indicate if the sector is authenticated 300 | unsigned char respm[16]; 301 | unsigned char respsize; 302 | unsigned char authm[] = {0x40, currentblock / 4, 0x10, KEY_MFC}; 303 | 304 | /* Read block 4 */ 305 | unsigned char readm[] = {0x10, 0x30, currentblock}; 306 | Serial.println("Reading Mifare..."); 307 | // Now we try to go through all 16 sectors (each having 4 blocks) 308 | // authenticating each sector, and then dumping the blocks 309 | for (currentblock = 0; currentblock < 64; currentblock++) { 310 | // Check if this is a new block so that we can reauthenticate 311 | 312 | /* Authenticate sector 1 with generic keys */ 313 | //authenticated = true; 314 | authm[1] = currentblock / 4; 315 | authenticated = nfc.ReaderTagCmd(authm, sizeof(authm), respm, &respsize); 316 | 317 | if ((authenticated == NFC_ERROR) || (respm[respsize - 1] != 0)) { 318 | authenticated = false; 319 | } else { 320 | authenticated = true; 321 | } 322 | // If we're still not authenticated just skip the block 323 | if (!authenticated) { 324 | Serial.print("Block "); Serial.print(currentblock, DEC); 325 | Serial.println(" unable to authenticate"); 326 | } else { 327 | // Authenticated ... we should be able to read the block now 328 | // Dump the data into the 'data' array 329 | readm[2] = {currentblock}; 330 | success = nfc.ReaderTagCmd(readm, sizeof(readm), respm, &respsize); 331 | if ((success == NFC_ERROR) || (respm[respsize - 1] != 0)) { 332 | success = 0; 333 | } else { 334 | success = 1; 335 | } 336 | if (success) { 337 | // Read successful 338 | Serial.print("Block "); Serial.print(currentblock, DEC); 339 | if (currentblock < 10) 340 | Serial.print(" "); 341 | else 342 | Serial.print(" "); 343 | 344 | // Dump the raw data 345 | //nfc.PrintHexChar(data, 16); 346 | 347 | printBuf(respm + 1, respsize - 2); 348 | } else { 349 | // Oops ... something happened 350 | Serial.print("Block "); 351 | Serial.print(currentblock, DEC); 352 | Serial.println(" unable to read this block"); 353 | } 354 | } 355 | delay(50); 356 | } 357 | 358 | Serial.println("UID clone ready"); 359 | Serial.println("Finish Dump Card..."); 360 | 361 | } 362 | 363 | //Emulate a Visa MSD 364 | void visamsd() { 365 | mode = 2; 366 | resetMode(); 367 | memcpy(&card[0], last, sizeof(last)); 368 | memcpy(&card[4], token, sizeof(token)); 369 | memcpy(&card[23], statusapdu, sizeof(statusapdu)); 370 | 371 | uint8_t *apdus2[] = {ppsea, visaa, processinga, card, finished, finished}; 372 | uint8_t apdusLen2 [] = { sizeof(ppsea), sizeof(visaa), sizeof(processinga), sizeof(card), sizeof(finished), sizeof(finished)}; 373 | 374 | for (uint8_t i = 0; i < 6; i++) { 375 | 376 | if (nfc.CardModeReceive(Cmd, &CmdSize) == 0) { //Data in buffer? 377 | 378 | while ((CmdSize < 2) && (Cmd[0] != 0x00)) {} 379 | 380 | printData(Cmd, CmdSize, 1); 381 | 382 | nfc.CardModeSend(apdus2[i], apdusLen2[i]); 383 | 384 | printData(apdus2[i], apdusLen2[i], 3); 385 | 386 | } else { 387 | i--; 388 | } 389 | } 390 | } 391 | 392 | //Is it a card in range? for Mifare and ISO cards 393 | void detectcard() { 394 | while (detectCardFlag == false) { 395 | Serial.println("wait detect Card..."); 396 | if (!nfc.WaitForDiscoveryNotification(&RfInterface)) { // Waiting to detect cards 397 | 398 | if (RfInterface.ModeTech == MODE_POLL || RfInterface.ModeTech == TECH_PASSIVE_NFCA) { 399 | char tmp[16]; 400 | 401 | Serial.print("\tSENS_RES = "); 402 | sprintf(tmp, "0x%.2X", RfInterface.Info.NFC_APP.SensRes[0]); 403 | Serial.print(tmp); Serial.print(" "); 404 | sprintf(tmp, "0x%.2X", RfInterface.Info.NFC_APP.SensRes[1]); 405 | 406 | Serial.print(tmp); Serial.println(" "); 407 | Serial.print("\tNFCID = "); 408 | 409 | printBuf(RfInterface.Info.NFC_APP.NfcId, RfInterface.Info.NFC_APP.NfcIdLen); 410 | 411 | uidcf[2] = 7 + RfInterface.Info.NFC_APP.NfcIdLen; 412 | uidcf[3] = 0x02; 413 | uidcf[8] = 0x33; 414 | uidcf[9] = RfInterface.Info.NFC_APP.NfcIdLen; 415 | 416 | uidlen = RfInterface.Info.NFC_APP.NfcIdLen; 417 | 418 | memcpy(&uidcf[10], RfInterface.Info.NFC_APP.NfcId, RfInterface.Info.NFC_APP.NfcIdLen); 419 | 420 | //uidcf ready to fill CORE_CONF 421 | 422 | if (RfInterface.Info.NFC_APP.NfcIdLen != 4) { 423 | 424 | Serial.println("Ooops ... this doesn't seem to be a Mifare Classic card!"); 425 | return; 426 | } 427 | 428 | if (RfInterface.Info.NFC_APP.SelResLen != 0) { 429 | 430 | Serial.print("\tSEL_RES = "); 431 | sprintf(tmp, "0x%.2X", RfInterface.Info.NFC_APP.SelRes[0]); 432 | Serial.print(tmp); Serial.println(" "); 433 | } 434 | } 435 | switch (RfInterface.Protocol) { 436 | case PROT_ISODEP: 437 | 438 | Serial.println(" - Found ISODEP card"); 439 | 440 | seekTrack2(); 441 | break; 442 | 443 | case PROT_MIFARE: 444 | Serial.println(" - Found MIFARE card"); 445 | 446 | readingmifare(); 447 | break; 448 | 449 | default: 450 | Serial.println(" - Not a valid card"); 451 | break; 452 | } 453 | 454 | //* It can detect multiple cards at the same time if they use the same protocol 455 | if (RfInterface.MoreTags) { 456 | nfc.ReaderActivateNext(&RfInterface); 457 | } 458 | 459 | //* Wait for card removal 460 | nfc.ProcessReaderMode(RfInterface, PRESENCE_CHECK); 461 | Serial.println("CARD REMOVED!"); 462 | 463 | nfc.StopDiscovery(); 464 | nfc.StartDiscovery(mode); 465 | detectCardFlag = true; 466 | } 467 | } 468 | } 469 | 470 | //Detect NFC Readers 471 | void nfcdetectreader() { 472 | mode = 2; 473 | resetMode(); 474 | while (detectCardFlag == false) { 475 | Serial.println("Looking for card readers..."); 476 | if (nfc.CardModeReceive(Cmd, &CmdSize) == 0) { //Data in buffer? 477 | if ((CmdSize >= 2) && (Cmd[0] == 0x00)) { //Expect at least two bytes 478 | switch (Cmd[1]) { 479 | case 0xA4: //Something tries to select a file, meaning that it is a reader 480 | Serial.println("Card reader detected!"); 481 | detectCardFlag = true; 482 | break; 483 | 484 | default: 485 | break; 486 | } 487 | nfc.CardModeSend(STATUSOK, sizeof(STATUSOK)); 488 | } 489 | } 490 | } 491 | detectCardFlag = false; 492 | } 493 | 494 | //To read Mifare and Visa 495 | void mifare() { 496 | mode = 1; 497 | resetMode(); 498 | detectcard(); 499 | detectCardFlag = false; 500 | } 501 | 502 | void setup() { 503 | Serial.begin(9600); 504 | #ifdef DEBUG 505 | while (!Serial); 506 | #endif 507 | Serial.println("Detecting NFC readers with PN7150"); 508 | 509 | pinMode(LED_BUILTIN, OUTPUT); 510 | pinMode(PIN_LED2, OUTPUT); 511 | pinMode(PIN_LED3, OUTPUT); 512 | 513 | pinMode(BUTTON_0, INPUT_PULLUP); 514 | pinMode(BUTTON_1, INPUT_PULLUP); 515 | pinMode(BUTTON_2, INPUT_PULLUP); 516 | 517 | digitalWrite(LED_BUILTIN, LOW); 518 | digitalWrite(PIN_LED2, LOW); 519 | digitalWrite(PIN_LED3, LOW); 520 | #ifdef ARDUINO_ARCH_SAMD 521 | // Initialize flash library and check its chip ID. 522 | if (!flash.begin()) { 523 | Serial.println("Error, failed to initialize flash chip!"); 524 | while (1) { 525 | blink(LED_BUILTIN, 600, 3);; 526 | } 527 | } 528 | Serial.print("Flash chip JEDEC ID: 0x"); Serial.println(flash.getJEDECID(), HEX); 529 | #endif 530 | resetMode(); 531 | Serial.println("HunterCat NFC"); 532 | } 533 | 534 | // to detect card readers: nfcdetectreader() 535 | // to emulate Visa MSD: visamsd() 536 | // to read Mifare card: mifare() 537 | 538 | void loop() { 539 | int analog = analogRead(A0); 540 | int voltagepercent = map(analog, 0, 645, 0, 100 ); 541 | 542 | //Low Battery < 30% 543 | if (voltagepercent < 30) { 544 | RGB(234, 200, 203); //Pink 545 | delay(100); 546 | RGB(0, 0, 0); 547 | delay(100); 548 | } 549 | 550 | if (digitalRead(BUTTON_0) == 0) { 551 | // to detect card readers: nfcdetectreader() 552 | Serial.println("nfcdetectreader"); 553 | RGB(255, 0, 0); 554 | nfcdetectreader(); 555 | } 556 | if (digitalRead(BUTTON_1) == 0) { 557 | // to read mifare card and clone UID: mifare() 558 | RGB(0, 0, 255); //Blue 559 | Serial.println("mifare"); 560 | mifare(); 561 | } 562 | if (digitalRead(BUTTON_2) == 0) { 563 | // to emulate Visa MSD: visamsd() 564 | Serial.println("visamsd"); 565 | RGB(10,240,70); //Green 566 | visamsd(); 567 | } 568 | RGB(0,240,250); //BLUE 569 | delay(150); 570 | RGB(0, 0, 0); 571 | delay(150); 572 | } 573 | -------------------------------------------------------------------------------- /Firmware/huntercat_nfc_detect_readers/binary/hunterCatNFC_TestV1.3.0_wBootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElectronicCats/HunterCatNFC/b1ac81f326e1fd372ee18d467b212df7d3ace633/Firmware/huntercat_nfc_detect_readers/binary/hunterCatNFC_TestV1.3.0_wBootloader.bin -------------------------------------------------------------------------------- /Firmware/huntercat_nfc_detect_readers/huntercat_nfc_detect_readers.ino: -------------------------------------------------------------------------------- 1 | /** 2 | Example to detect NFC readers. 3 | 4 | Authors: 5 | Salvador Mendoza - @Netxing - salmg.net 6 | For Electronic Cats - electroniccats.com 7 | 8 | March 2021 9 | 10 | This code is beerware; if you see me (or any other collaborator 11 | member) at the local, and you've found our code helpful, 12 | please buy us a round! 13 | Distributed as-is; no warranty is given. 14 | 15 | --- 16 | 17 | This code will detect NFC card readers. 18 | 19 | When it starts, the three LEDs will be on, and then will turn off after a second. 20 | Then a constant LED 1 will start flashing meaning that is scanning for NFC readers. 21 | When a NFC reader is detected, LED 2 and 3 will be on for a second. 22 | 23 | */ 24 | 25 | #include "Electroniccats_PN7150.h" 26 | #ifdef ARDUINO_ARCH_SAMD 27 | #include "SdFat.h" 28 | #include "Adafruit_SPIFlash.h" 29 | #endif 30 | 31 | #ifdef ARDUINO_ARCH_SAMD 32 | #define PN7150_IRQ (15) 33 | #define PN7150_VEN (14) 34 | #else 35 | #define PN7150_IRQ (18) 36 | #define PN7150_VEN (17) 37 | #endif 38 | #define PN7150_ADDR (0x28) 39 | 40 | #ifdef ARDUINO_ARCH_RP2040 41 | 42 | #define PIN_LED 8 43 | #define PIN_LED2 9 44 | #define PIN_LED3 10 45 | 46 | #define BUTTON_0 19 47 | #define BUTTON_1 20 48 | #define BUTTON_2 21 49 | #endif 50 | 51 | Electroniccats_PN7150 nfc(PN7150_IRQ, PN7150_VEN, PN7150_ADDR); // creates a global NFC device interface object, attached to pins 7 (IRQ) and 8 (VEN) and using the default I2C address 0x28 52 | RfIntf_t RfInterface; //Intarface to save data for multiple tags 53 | 54 | #ifdef ARDUINO_ARCH_SAMD 55 | Adafruit_FlashTransport_SPI flashTransport(EXTERNAL_FLASH_USE_CS, EXTERNAL_FLASH_USE_SPI); 56 | 57 | Adafruit_SPIFlash flash(&flashTransport); 58 | #endif 59 | 60 | unsigned char STATUSOK[] = {0x90, 0x00}, Cmd[256], CmdSize; 61 | 62 | uint8_t mode = 2; // modes: 1 = Reader/ Writer, 2 = Emulation 63 | 64 | void RGB(int R, int G, int B) 65 | { 66 | int g = map(G, 0, 255, 0, 1023); 67 | 68 | analogWrite(PIN_LED,R); 69 | analogWrite(PIN_LED2,B); 70 | analogWrite(PIN_LED3,g); 71 | } 72 | 73 | void blink(int pin, int msdelay, int times) { 74 | for (int i = 0; i < times; i++) { 75 | digitalWrite(pin, HIGH); 76 | delay(msdelay); 77 | digitalWrite(pin, LOW); 78 | delay(msdelay); 79 | } 80 | } 81 | 82 | void setup() { 83 | Serial.begin(9600); 84 | //while (!Serial); 85 | Serial.println("Detecting NFC readers with PN7150"); 86 | 87 | pinMode(LED_BUILTIN, OUTPUT); //RED 88 | pinMode(PIN_LED2, OUTPUT); 89 | pinMode(PIN_LED3, OUTPUT); 90 | 91 | digitalWrite(LED_BUILTIN, LOW); 92 | digitalWrite(PIN_LED2, LOW); 93 | digitalWrite(PIN_LED3, LOW); 94 | 95 | #ifdef ARDUINO_ARCH_SAMD 96 | // Initialize flash library and check its chip ID. 97 | if (!flash.begin()) { 98 | Serial.println("Error, failed to initialize flash chip!"); 99 | while (1) { 100 | blink(LED_BUILTIN, 600, 3);; 101 | } 102 | } 103 | Serial.print("Flash chip JEDEC ID: 0x"); Serial.println(flash.getJEDECID(), HEX); 104 | #endif 105 | Serial.println("Initializing..."); 106 | if (nfc.connectNCI()) { //Wake up the board 107 | Serial.println("Error while setting up the mode, check connections!"); 108 | while (1){ 109 | blink(LED_BUILTIN, 200, 3); 110 | } 111 | } 112 | 113 | if (nfc.ConfigureSettings()) { 114 | Serial.println("The Configure Settings failed!"); 115 | while (1){ 116 | blink(LED_BUILTIN, 200, 5); 117 | } 118 | } 119 | 120 | if (nfc.ConfigMode(mode)) { //Set up the configuration mode 121 | Serial.println("The Configure Mode failed!!"); 122 | while (1){ 123 | blink(LED_BUILTIN, 200, 10); 124 | } 125 | } 126 | nfc.StartDiscovery(mode); //NCI Discovery mode 127 | blink(LED_BUILTIN, 200, 2); 128 | blink(PIN_LED2, 200, 2); 129 | blink(PIN_LED3, 200, 2); 130 | Serial.println("HunterCat NFC v1.3"); 131 | Serial.println("Looking for card readers..."); 132 | } 133 | 134 | // to detect NFC card readers 135 | void loop() { 136 | int analog = analogRead(A0); 137 | int voltagepercent = map(analog, 0, 645, 0, 100 ); 138 | 139 | if (nfc.CardModeReceive(Cmd, &CmdSize) == 0) { //Data in buffer? 140 | if ((CmdSize >= 2) && (Cmd[0] == 0x00)) { //Expect at least two bytes 141 | switch (Cmd[1]) { 142 | case 0xA4: //If tries to select a file, meaning that it is a reader 143 | Serial.println("Card reader detected!"); 144 | RGB(0,255,255); 145 | delay(1000); 146 | RGB(0,0,0); 147 | break; 148 | 149 | default: 150 | break; 151 | } 152 | nfc.CardModeSend(STATUSOK, sizeof(STATUSOK)); 153 | } 154 | } 155 | 156 | //Low Battery < 95% 157 | if (voltagepercent < 90) { 158 | RGB(234, 200, 203); //Pink 159 | delay(100); 160 | RGB(0, 0, 0); 161 | delay(100); 162 | } 163 | 164 | RGB(255,0,0); 165 | delay(100); 166 | RGB(0, 0, 0); 167 | delay(100); 168 | } 169 | -------------------------------------------------------------------------------- /Hardware/Case/Case.SLDASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElectronicCats/HunterCatNFC/b1ac81f326e1fd372ee18d467b212df7d3ace633/Hardware/Case/Case.SLDASM -------------------------------------------------------------------------------- /Hardware/Case/Case.pro: -------------------------------------------------------------------------------- 1 | update=20/01/2021 07:16:41 p. m. 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=2 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.25 32 | ViaDiameter1=0.8 33 | ViaDrill1=0.4 34 | dPairWidth1=0.2 35 | dPairGap1=0.25 36 | dPairViaGap1=0.25 37 | SilkLineWidth=0.12 38 | SilkTextSizeV=1 39 | SilkTextSizeH=1 40 | SilkTextSizeThickness=0.15 41 | SilkTextItalic=0 42 | SilkTextUpright=1 43 | CopperLineWidth=0.2 44 | CopperTextSizeV=1.5 45 | CopperTextSizeH=1.5 46 | CopperTextThickness=0.3 47 | CopperTextItalic=0 48 | CopperTextUpright=1 49 | EdgeCutLineWidth=0.05 50 | CourtyardLineWidth=0.05 51 | OthersLineWidth=0.15 52 | OthersTextSizeV=1 53 | OthersTextSizeH=1 54 | OthersTextSizeThickness=0.15 55 | OthersTextItalic=0 56 | OthersTextUpright=1 57 | SolderMaskClearance=0 58 | SolderMaskMinWidth=0 59 | SolderPasteClearance=0 60 | SolderPasteRatio=-0 61 | [pcbnew/Layer.F.Cu] 62 | Name=F.Cu 63 | Type=0 64 | Enabled=1 65 | [pcbnew/Layer.In1.Cu] 66 | Name=In1.Cu 67 | Type=0 68 | Enabled=0 69 | [pcbnew/Layer.In2.Cu] 70 | Name=In2.Cu 71 | Type=0 72 | Enabled=0 73 | [pcbnew/Layer.In3.Cu] 74 | Name=In3.Cu 75 | Type=0 76 | Enabled=0 77 | [pcbnew/Layer.In4.Cu] 78 | Name=In4.Cu 79 | Type=0 80 | Enabled=0 81 | [pcbnew/Layer.In5.Cu] 82 | Name=In5.Cu 83 | Type=0 84 | Enabled=0 85 | [pcbnew/Layer.In6.Cu] 86 | Name=In6.Cu 87 | Type=0 88 | Enabled=0 89 | [pcbnew/Layer.In7.Cu] 90 | Name=In7.Cu 91 | Type=0 92 | Enabled=0 93 | [pcbnew/Layer.In8.Cu] 94 | Name=In8.Cu 95 | Type=0 96 | Enabled=0 97 | [pcbnew/Layer.In9.Cu] 98 | Name=In9.Cu 99 | Type=0 100 | Enabled=0 101 | [pcbnew/Layer.In10.Cu] 102 | Name=In10.Cu 103 | Type=0 104 | Enabled=0 105 | [pcbnew/Layer.In11.Cu] 106 | Name=In11.Cu 107 | Type=0 108 | Enabled=0 109 | [pcbnew/Layer.In12.Cu] 110 | Name=In12.Cu 111 | Type=0 112 | Enabled=0 113 | [pcbnew/Layer.In13.Cu] 114 | Name=In13.Cu 115 | Type=0 116 | Enabled=0 117 | [pcbnew/Layer.In14.Cu] 118 | Name=In14.Cu 119 | Type=0 120 | Enabled=0 121 | [pcbnew/Layer.In15.Cu] 122 | Name=In15.Cu 123 | Type=0 124 | Enabled=0 125 | [pcbnew/Layer.In16.Cu] 126 | Name=In16.Cu 127 | Type=0 128 | Enabled=0 129 | [pcbnew/Layer.In17.Cu] 130 | Name=In17.Cu 131 | Type=0 132 | Enabled=0 133 | [pcbnew/Layer.In18.Cu] 134 | Name=In18.Cu 135 | Type=0 136 | Enabled=0 137 | [pcbnew/Layer.In19.Cu] 138 | Name=In19.Cu 139 | Type=0 140 | Enabled=0 141 | [pcbnew/Layer.In20.Cu] 142 | Name=In20.Cu 143 | Type=0 144 | Enabled=0 145 | [pcbnew/Layer.In21.Cu] 146 | Name=In21.Cu 147 | Type=0 148 | Enabled=0 149 | [pcbnew/Layer.In22.Cu] 150 | Name=In22.Cu 151 | Type=0 152 | Enabled=0 153 | [pcbnew/Layer.In23.Cu] 154 | Name=In23.Cu 155 | Type=0 156 | Enabled=0 157 | [pcbnew/Layer.In24.Cu] 158 | Name=In24.Cu 159 | Type=0 160 | Enabled=0 161 | [pcbnew/Layer.In25.Cu] 162 | Name=In25.Cu 163 | Type=0 164 | Enabled=0 165 | [pcbnew/Layer.In26.Cu] 166 | Name=In26.Cu 167 | Type=0 168 | Enabled=0 169 | [pcbnew/Layer.In27.Cu] 170 | Name=In27.Cu 171 | Type=0 172 | Enabled=0 173 | [pcbnew/Layer.In28.Cu] 174 | Name=In28.Cu 175 | Type=0 176 | Enabled=0 177 | [pcbnew/Layer.In29.Cu] 178 | Name=In29.Cu 179 | Type=0 180 | Enabled=0 181 | [pcbnew/Layer.In30.Cu] 182 | Name=In30.Cu 183 | Type=0 184 | Enabled=0 185 | [pcbnew/Layer.B.Cu] 186 | Name=B.Cu 187 | Type=0 188 | Enabled=1 189 | [pcbnew/Layer.B.Adhes] 190 | Enabled=1 191 | [pcbnew/Layer.F.Adhes] 192 | Enabled=1 193 | [pcbnew/Layer.B.Paste] 194 | Enabled=1 195 | [pcbnew/Layer.F.Paste] 196 | Enabled=1 197 | [pcbnew/Layer.B.SilkS] 198 | Enabled=1 199 | [pcbnew/Layer.F.SilkS] 200 | Enabled=1 201 | [pcbnew/Layer.B.Mask] 202 | Enabled=1 203 | [pcbnew/Layer.F.Mask] 204 | Enabled=1 205 | [pcbnew/Layer.Dwgs.User] 206 | Enabled=1 207 | [pcbnew/Layer.Cmts.User] 208 | Enabled=1 209 | [pcbnew/Layer.Eco1.User] 210 | Enabled=1 211 | [pcbnew/Layer.Eco2.User] 212 | Enabled=1 213 | [pcbnew/Layer.Edge.Cuts] 214 | Enabled=1 215 | [pcbnew/Layer.Margin] 216 | Enabled=1 217 | [pcbnew/Layer.B.CrtYd] 218 | Enabled=1 219 | [pcbnew/Layer.F.CrtYd] 220 | Enabled=1 221 | [pcbnew/Layer.B.Fab] 222 | Enabled=1 223 | [pcbnew/Layer.F.Fab] 224 | Enabled=1 225 | [pcbnew/Layer.Rescue] 226 | Enabled=0 227 | [pcbnew/Netclasses] 228 | [pcbnew/Netclasses/Default] 229 | Name=Default 230 | Clearance=0.2 231 | TrackWidth=0.25 232 | ViaDiameter=0.8 233 | ViaDrill=0.4 234 | uViaDiameter=0.3 235 | uViaDrill=0.1 236 | dPairWidth=0.2 237 | dPairGap=0.25 238 | dPairViaGap=0.25 239 | -------------------------------------------------------------------------------- /Hardware/Case/Case.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | EELAYER 25 0 3 | EELAYER END 4 | $EndSCHEMATC 5 | -------------------------------------------------------------------------------- /Hardware/Case/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElectronicCats/HunterCatNFC/b1ac81f326e1fd372ee18d467b212df7d3ace633/Hardware/HunterCat-NFC.SLDPRT -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/Ensamblaje14.SLDASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElectronicCats/HunterCatNFC/b1ac81f326e1fd372ee18d467b212df7d3ace633/Hardware/HunterCat-NFC/Ensamblaje14.SLDASM -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC-cache.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # Battery_Management_MCP73831-3-OT 5 | # 6 | DEF Battery_Management_MCP73831-3-OT U 0 40 Y Y 1 F N 7 | F0 "U" -300 250 50 H V L CNN 8 | F1 "Battery_Management_MCP73831-3-OT" 50 250 50 H V L CNN 9 | F2 "Package_TO_SOT_SMD:SOT-23-5" 50 -250 50 H I L CIN 10 | F3 "" -150 -50 50 H I C CNN 11 | ALIAS MCP73832-5-OT MCP73832-4-OT MCP73832-3-OT MCP73831-2-OT MCP73831-5-OT MCP73831-4-OT MCP73831-3-OT 12 | $FPLIST 13 | SOT?23* 14 | $ENDFPLIST 15 | DRAW 16 | S -300 200 300 -200 0 1 10 f 17 | X STAT 1 400 -100 100 L 50 50 1 1 O 18 | X VSS 2 0 -300 100 U 50 50 1 1 W 19 | X VBAT 3 400 100 100 L 50 50 1 1 w 20 | X VDD 4 0 300 100 D 50 50 1 1 W 21 | X PROG 5 -400 -100 100 R 50 50 1 1 I 22 | ENDDRAW 23 | ENDDEF 24 | # 25 | # Connector_Conn_01x06_Female 26 | # 27 | DEF Connector_Conn_01x06_Female J 0 40 Y N 1 F N 28 | F0 "J" 0 300 50 H V C CNN 29 | F1 "Connector_Conn_01x06_Female" 0 -400 50 H V C CNN 30 | F2 "" 0 0 50 H I C CNN 31 | F3 "" 0 0 50 H I C CNN 32 | $FPLIST 33 | Connector*:*_1x??_* 34 | $ENDFPLIST 35 | DRAW 36 | A 0 -300 20 901 -901 1 1 6 N 0 -280 0 -320 37 | A 0 -200 20 901 -901 1 1 6 N 0 -180 0 -220 38 | A 0 -100 20 901 -901 1 1 6 N 0 -80 0 -120 39 | A 0 0 20 901 -901 1 1 6 N 0 20 0 -20 40 | A 0 100 20 901 -901 1 1 6 N 0 120 0 80 41 | A 0 200 20 901 -901 1 1 6 N 0 220 0 180 42 | P 2 1 1 6 -50 -300 -20 -300 N 43 | P 2 1 1 6 -50 -200 -20 -200 N 44 | P 2 1 1 6 -50 -100 -20 -100 N 45 | P 2 1 1 6 -50 0 -20 0 N 46 | P 2 1 1 6 -50 100 -20 100 N 47 | P 2 1 1 6 -50 200 -20 200 N 48 | X Pin_1 1 -200 200 150 R 50 50 1 1 P 49 | X Pin_2 2 -200 100 150 R 50 50 1 1 P 50 | X Pin_3 3 -200 0 150 R 50 50 1 1 P 51 | X Pin_4 4 -200 -100 150 R 50 50 1 1 P 52 | X Pin_5 5 -200 -200 150 R 50 50 1 1 P 53 | X Pin_6 6 -200 -300 150 R 50 50 1 1 P 54 | ENDDRAW 55 | ENDDEF 56 | # 57 | # Connector_Screw_Terminal_01x02 58 | # 59 | DEF Connector_Screw_Terminal_01x02 J 0 40 Y N 1 F N 60 | F0 "J" 0 100 50 H V C CNN 61 | F1 "Connector_Screw_Terminal_01x02" 0 -200 50 H V C CNN 62 | F2 "" 0 0 50 H I C CNN 63 | F3 "" 0 0 50 H I C CNN 64 | $FPLIST 65 | TerminalBlock*:* 66 | $ENDFPLIST 67 | DRAW 68 | C 0 -100 25 1 1 6 N 69 | C 0 0 25 1 1 6 N 70 | S -50 50 50 -150 1 1 10 f 71 | P 2 1 1 6 -21 -87 13 -120 N 72 | P 2 1 1 6 -21 13 13 -20 N 73 | P 2 1 1 6 -14 -80 20 -113 N 74 | P 2 1 1 6 -14 20 20 -13 N 75 | X Pin_1 1 -200 0 150 R 50 50 1 1 P 76 | X Pin_2 2 -200 -100 150 R 50 50 1 1 P 77 | ENDDRAW 78 | ENDDEF 79 | # 80 | # Device_C_Small 81 | # 82 | DEF Device_C_Small C 0 10 N N 1 F N 83 | F0 "C" 10 70 50 H V L CNN 84 | F1 "Device_C_Small" 10 -80 50 H V L CNN 85 | F2 "" 0 0 50 H I C CNN 86 | F3 "" 0 0 50 H I C CNN 87 | $FPLIST 88 | C_* 89 | $ENDFPLIST 90 | DRAW 91 | P 2 0 1 13 -60 -20 60 -20 N 92 | P 2 0 1 12 -60 20 60 20 N 93 | X ~ 1 0 100 80 D 50 50 1 1 P 94 | X ~ 2 0 -100 80 U 50 50 1 1 P 95 | ENDDRAW 96 | ENDDEF 97 | # 98 | # Device_Crystal_GND24_Small 99 | # 100 | DEF Device_Crystal_GND24_Small Y 0 40 Y N 1 F N 101 | F0 "Y" 50 175 50 H V L CNN 102 | F1 "Device_Crystal_GND24_Small" 50 100 50 H V L CNN 103 | F2 "" 0 0 50 H I C CNN 104 | F3 "" 0 0 50 H I C CNN 105 | $FPLIST 106 | Crystal* 107 | $ENDFPLIST 108 | DRAW 109 | S -30 -60 30 60 0 1 0 N 110 | P 2 0 1 15 -50 -30 -50 30 N 111 | P 2 0 1 15 50 -30 50 30 N 112 | P 4 0 1 0 -50 -50 -50 -75 50 -75 50 -50 N 113 | P 4 0 1 0 -50 50 -50 75 50 75 50 50 N 114 | X 1 1 -100 0 50 R 30 50 1 1 P 115 | X 2 2 0 -100 25 U 30 50 1 1 P 116 | X 3 3 100 0 50 L 30 50 1 1 P 117 | X 4 4 0 100 25 D 30 50 1 1 P 118 | ENDDRAW 119 | ENDDEF 120 | # 121 | # Device_Fuse_Small 122 | # 123 | DEF Device_Fuse_Small F 0 10 N N 1 F N 124 | F0 "F" 0 -60 50 H V C CNN 125 | F1 "Device_Fuse_Small" 0 60 50 H V C CNN 126 | F2 "" 0 0 50 H I C CNN 127 | F3 "" 0 0 50 H I C CNN 128 | $FPLIST 129 | SM* 130 | $ENDFPLIST 131 | DRAW 132 | S -50 20 50 -20 0 1 0 N 133 | P 2 0 1 0 -50 0 50 0 N 134 | X ~ 1 -100 0 50 R 50 50 1 1 P 135 | X ~ 2 100 0 50 L 50 50 1 1 P 136 | ENDDRAW 137 | ENDDEF 138 | # 139 | # Device_L 140 | # 141 | DEF Device_L L 0 40 N N 1 F N 142 | F0 "L" -50 0 50 V V C CNN 143 | F1 "Device_L" 75 0 50 V V C CNN 144 | F2 "" 0 0 50 H I C CNN 145 | F3 "" 0 0 50 H I C CNN 146 | $FPLIST 147 | Choke_* 148 | *Coil* 149 | Inductor_* 150 | L_* 151 | $ENDFPLIST 152 | DRAW 153 | A 0 -75 25 -899 899 0 1 0 N 0 -100 0 -50 154 | A 0 -25 25 -899 899 0 1 0 N 0 -50 0 0 155 | A 0 25 25 -899 899 0 1 0 N 0 0 0 50 156 | A 0 75 25 -899 899 0 1 0 N 0 50 0 100 157 | X 1 1 0 150 50 D 50 50 1 1 P 158 | X 2 2 0 -150 50 U 50 50 1 1 P 159 | ENDDRAW 160 | ENDDEF 161 | # 162 | # Device_LED 163 | # 164 | DEF Device_LED D 0 40 N N 1 F N 165 | F0 "D" 0 100 50 H V C CNN 166 | F1 "Device_LED" 0 -100 50 H V C CNN 167 | F2 "" 0 0 50 H I C CNN 168 | F3 "" 0 0 50 H I C CNN 169 | $FPLIST 170 | LED* 171 | LED_SMD:* 172 | LED_THT:* 173 | $ENDFPLIST 174 | DRAW 175 | P 2 0 1 10 -50 -50 -50 50 N 176 | P 2 0 1 0 -50 0 50 0 N 177 | P 4 0 1 10 50 -50 50 50 -50 0 50 -50 N 178 | P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N 179 | P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N 180 | X K 1 -150 0 100 R 50 50 1 1 P 181 | X A 2 150 0 100 L 50 50 1 1 P 182 | ENDDRAW 183 | ENDDEF 184 | # 185 | # Device_L_Small 186 | # 187 | DEF Device_L_Small L 0 10 N N 1 F N 188 | F0 "L" 30 40 50 H V L CNN 189 | F1 "Device_L_Small" 30 -40 50 H V L CNN 190 | F2 "" 0 0 50 H I C CNN 191 | F3 "" 0 0 50 H I C CNN 192 | $FPLIST 193 | Choke_* 194 | *Coil* 195 | Inductor_* 196 | L_* 197 | $ENDFPLIST 198 | DRAW 199 | A 0 -60 20 -899 899 0 1 0 N 0 -80 0 -40 200 | A 0 -20 20 -899 899 0 1 0 N 0 -40 0 0 201 | A 0 20 20 -899 899 0 1 0 N 0 0 0 40 202 | A 0 60 20 -899 899 0 1 0 N 0 40 0 80 203 | X ~ 1 0 100 20 D 50 50 1 1 P 204 | X ~ 2 0 -100 20 U 50 50 1 1 P 205 | ENDDRAW 206 | ENDDEF 207 | # 208 | # Device_Q_PMOS_GSD 209 | # 210 | DEF Device_Q_PMOS_GSD Q 0 0 Y N 1 F N 211 | F0 "Q" 200 50 50 H V L CNN 212 | F1 "Device_Q_PMOS_GSD" 200 -50 50 H V L CNN 213 | F2 "" 200 100 50 H I C CNN 214 | F3 "" 0 0 50 H I C CNN 215 | DRAW 216 | C 65 0 110 0 1 10 N 217 | C 100 -70 10 0 1 0 F 218 | C 100 70 10 0 1 0 F 219 | P 2 0 1 0 10 0 -100 0 N 220 | P 2 0 1 10 10 75 10 -75 N 221 | P 2 0 1 10 30 -50 30 -90 N 222 | P 2 0 1 10 30 20 30 -20 N 223 | P 2 0 1 10 30 90 30 50 N 224 | P 2 0 1 0 100 100 100 70 N 225 | P 3 0 1 0 100 -100 100 0 30 0 N 226 | P 4 0 1 0 30 70 130 70 130 -70 30 -70 N 227 | P 4 0 1 0 90 0 50 15 50 -15 90 0 F 228 | P 4 0 1 0 110 -20 115 -15 145 -15 150 -10 N 229 | P 4 0 1 0 130 -15 115 10 145 10 130 -15 N 230 | X G 1 -200 0 100 R 50 50 1 1 I 231 | X S 2 100 -200 100 U 50 50 1 1 P 232 | X D 3 100 200 100 D 50 50 1 1 P 233 | ENDDRAW 234 | ENDDEF 235 | # 236 | # Device_R_Small 237 | # 238 | DEF Device_R_Small R 0 10 N N 1 F N 239 | F0 "R" 30 20 50 H V L CNN 240 | F1 "Device_R_Small" 30 -40 50 H V L CNN 241 | F2 "" 0 0 50 H I C CNN 242 | F3 "" 0 0 50 H I C CNN 243 | $FPLIST 244 | R_* 245 | $ENDFPLIST 246 | DRAW 247 | S -30 70 30 -70 0 1 8 N 248 | X ~ 1 0 100 30 D 50 50 1 1 P 249 | X ~ 2 0 -100 30 U 50 50 1 1 P 250 | ENDDRAW 251 | ENDDEF 252 | # 253 | # Diode_MBR340 254 | # 255 | DEF Diode_MBR340 D 0 40 N N 1 F N 256 | F0 "D" 0 100 50 H V C CNN 257 | F1 "Diode_MBR340" 0 -100 50 H V C CNN 258 | F2 "Diode_THT:D_DO-201AD_P15.24mm_Horizontal" 0 -175 50 H I C CNN 259 | F3 "" 0 0 50 H I C CNN 260 | ALIAS 1N5821 1N5822 MBR340 261 | $FPLIST 262 | D*DO?201AD* 263 | $ENDFPLIST 264 | DRAW 265 | P 2 0 1 0 50 0 -50 0 N 266 | P 4 0 1 10 50 50 50 -50 -50 0 50 50 N 267 | P 6 0 1 10 -75 25 -75 50 -50 50 -50 -50 -25 -50 -25 -25 N 268 | X K 1 -150 0 100 R 50 50 1 1 P 269 | X A 2 150 0 100 L 50 50 1 1 P 270 | ENDDRAW 271 | ENDDEF 272 | # 273 | # HunterCat-NFC-rescue_AP2112K-3.3-Regulator_Linear 274 | # 275 | DEF HunterCat-NFC-rescue_AP2112K-3.3-Regulator_Linear U 0 10 Y Y 1 F N 276 | F0 "U" -200 225 50 H V L CNN 277 | F1 "HunterCat-NFC-rescue_AP2112K-3.3-Regulator_Linear" 0 225 50 H V L CNN 278 | F2 "Package_TO_SOT_SMD:SOT-23-5" 0 325 50 H I C CNN 279 | F3 "" 0 100 50 H I C CNN 280 | $FPLIST 281 | SOT?23?5* 282 | $ENDFPLIST 283 | DRAW 284 | S -200 175 200 -200 0 1 10 f 285 | X VIN 1 -300 100 100 R 50 50 1 1 W 286 | X GND 2 0 -300 100 U 50 50 1 1 W 287 | X EN 3 -300 0 100 R 50 50 1 1 I 288 | X NC 4 300 0 100 L 50 50 1 1 N N 289 | X VOUT 5 300 100 100 L 50 50 1 1 w 290 | ENDDRAW 291 | ENDDEF 292 | # 293 | # HunterCat-NFC-rescue_ATSAMD21E18A-Electronic_Cats 294 | # 295 | DEF HunterCat-NFC-rescue_ATSAMD21E18A-Electronic_Cats U 0 40 Y Y 1 F N 296 | F0 "U" -470 1710 45 H V L BNN 297 | F1 "HunterCat-NFC-rescue_ATSAMD21E18A-Electronic_Cats" 820 1730 45 H V L BNN 298 | F2 "Package_QFP:TQFP-32_7x7mm_P0.8mm" 30 150 20 H I C CNN 299 | F3 "" 0 0 60 H I C CNN 300 | $FPLIST 301 | *QFN32_5MM* 302 | $ENDFPLIST 303 | DRAW 304 | S 1200 1700 -470 -1700 0 1 0 f 305 | P 2 1 0 0 1200 1700 1200 -1700 N 306 | X PA00/EINT0/SERCOM1.0 1 1400 1600 200 L 40 40 1 1 B 307 | X GND 10 -670 -1140 200 R 40 40 1 1 W 308 | X PA08/NMI/I2C/AIN16/SERCOM0+2.0/I2SD1 11 1400 700 200 L 40 40 1 1 B 309 | X PA09/I2C/EINT9/AIN17/SERCOM0+2.1/I2SMC 12 1400 600 200 L 40 40 1 1 B 310 | X PA10/EINT10/AIN18/SERCOM0+2.2/I2SCK 13 1400 500 200 L 40 40 1 1 B 311 | X PA11/EINT11/AIN19/SERCOM0+2.3/I2SF0 14 1400 400 200 L 40 40 1 1 B 312 | X PA14/EINT14/SERCOM2+4.2 15 1400 0 200 L 40 40 1 1 B 313 | X PA15/EINT15/SERCOM3+4.3 16 1400 -100 200 L 40 40 1 1 B 314 | X PA16/I2C/EINT0/SERCOM1+3.0 17 1400 -200 200 L 40 40 1 1 B 315 | X PA17/I2C/EINT1/SERCOM1+3.1 18 1400 -300 200 L 40 40 1 1 B 316 | X PA18/EINT2/SERCOM1+3.2 19 1400 -400 200 L 40 40 1 1 B 317 | X PA01/EINT1/SERCOM1.1 2 1400 1500 200 L 40 40 1 1 B 318 | X PA19/EINT3/SERCOM1+3.3/I2SD0 20 1400 -500 200 L 40 40 1 1 B 319 | X PA22/I2C/EINT6/SERCOM3+5.0 21 1400 -900 200 L 40 40 1 1 B 320 | X PA23/I2C/EINT7/SERCOM3+5.1/SOF 22 1400 -1000 200 L 40 40 1 1 B 321 | X PA24/EINT2/SERCOM3+5.2/D- 23 1400 -1100 200 L 40 40 1 1 B 322 | X PA25/EINT13/SERCOM3+5.3/D+ 24 1400 -1200 200 L 40 40 1 1 B 323 | X PA27/EINT15 25 1400 -1300 200 L 40 40 1 1 B 324 | X /RESET 26 -670 1500 200 R 40 40 1 1 B I 325 | X PA28/EINT8 27 1400 -1400 200 L 40 40 1 1 B 326 | X GNDA 28 -670 -1340 200 R 40 40 1 1 W 327 | X VDDCORE 29 -670 930 200 R 40 40 1 1 W 328 | X PA02/EINT2/AIN0/Y0/VOUT 3 1400 1400 200 L 40 40 1 1 B 329 | X VDDIN 30 -670 1080 200 R 40 40 1 1 W 330 | X PA30/EINT10/SECOM1.2/SWCLK 31 1400 -1500 200 L 40 40 1 1 B 331 | X PA31/EINT11/SECOM1.3/SWDIO 32 1400 -1600 200 L 40 40 1 1 B 332 | X PA03/EINT3/VREFA/AIN1 4 1400 1300 200 L 40 40 1 1 B 333 | X PA04/EINT4/VREFB/AIN4/SERCOM0.0 5 1400 1200 200 L 40 40 1 1 B 334 | X PA05/EINT5/AIN5/SERCOM0.1 6 1400 1100 200 L 40 40 1 1 B 335 | X PA06/EINT6/AIN6/SERCOM0.2 7 1400 1000 200 L 40 40 1 1 B 336 | X PA07/EINT7/AIN7/SERCOM0.3/I2SD0 8 1400 900 200 L 40 40 1 1 B 337 | X VDDA 9 -670 1210 200 R 40 40 1 1 W 338 | ENDDRAW 339 | ENDDEF 340 | # 341 | # HunterCat-NFC-rescue_USB_C_Plug_USB2.0-Connector 342 | # 343 | DEF HunterCat-NFC-rescue_USB_C_Plug_USB2.0-Connector P 0 40 Y Y 1 F N 344 | F0 "P" -400 750 50 H V L CNN 345 | F1 "HunterCat-NFC-rescue_USB_C_Plug_USB2.0-Connector" 500 750 50 H V R CNN 346 | F2 "" 150 0 50 H I C CNN 347 | F3 "" 150 0 50 H I C CNN 348 | $FPLIST 349 | USB*C*Plug* 350 | $ENDFPLIST 351 | DRAW 352 | A -275 -150 75 -1799 -1 0 1 20 N -350 -150 -200 -150 353 | A -275 -150 25 -1799 -1 0 1 10 N -300 -150 -250 -150 354 | A -275 -150 25 -1799 -1 0 1 10 F -300 -150 -250 -150 355 | A -275 150 25 1 1799 0 1 10 F -250 150 -300 150 356 | A -275 150 25 1 1799 0 1 10 N -250 150 -300 150 357 | A -275 150 75 1 1799 0 1 20 N -200 150 -350 150 358 | C -100 45 25 0 1 10 F 359 | C 0 -230 50 0 1 0 F 360 | S -10 -700 10 -660 0 0 0 N 361 | S 400 -90 360 -110 0 0 0 N 362 | S 400 110 360 90 0 0 0 N 363 | S 400 310 360 290 0 0 0 N 364 | S 400 410 360 390 0 0 0 N 365 | S 400 610 360 590 0 0 0 N 366 | S -400 700 400 -700 0 1 10 f 367 | S -300 -150 -250 150 0 1 10 F 368 | S 75 70 125 120 0 1 10 F 369 | P 2 0 1 20 -350 -150 -350 150 N 370 | P 2 0 1 20 -200 150 -200 -150 N 371 | P 2 0 1 20 0 -230 0 170 N 372 | P 3 0 1 20 0 -130 -100 -30 -100 20 N 373 | P 3 0 1 20 0 -80 100 20 100 70 N 374 | P 4 0 1 10 -50 170 0 270 50 170 -50 170 F 375 | X GND A1 0 -900 200 U 50 50 1 1 W 376 | X GND A12 0 -900 200 U 50 50 1 1 P N 377 | X VBUS A4 600 600 200 L 50 50 1 1 W 378 | X CC A5 600 400 200 L 50 50 1 1 B 379 | X D+ A6 600 -100 200 L 50 50 1 1 B 380 | X D- A7 600 100 200 L 50 50 1 1 B 381 | X VBUS A9 600 600 200 L 50 50 1 1 P N 382 | X GND B1 0 -900 200 U 50 50 1 1 P N 383 | X GND B12 0 -900 200 U 50 50 1 1 P N 384 | X VBUS B4 600 600 200 L 50 50 1 1 P N 385 | X VCONN B5 600 300 200 L 50 50 1 1 B 386 | X VBUS B9 600 600 200 L 50 50 1 1 P N 387 | X SHIELD S1 -300 -900 200 U 50 50 1 1 P 388 | ENDDRAW 389 | ENDDEF 390 | # 391 | # Mechanical_MountingHole 392 | # 393 | DEF Mechanical_MountingHole H 0 40 Y Y 1 F N 394 | F0 "H" 0 200 50 H V C CNN 395 | F1 "Mechanical_MountingHole" 0 125 50 H V C CNN 396 | F2 "" 0 0 50 H I C CNN 397 | F3 "" 0 0 50 H I C CNN 398 | $FPLIST 399 | MountingHole* 400 | $ENDFPLIST 401 | DRAW 402 | C 0 0 50 0 1 50 N 403 | ENDDRAW 404 | ENDDEF 405 | # 406 | # Memory_Flash_W25Q32JVSS 407 | # 408 | DEF Memory_Flash_W25Q32JVSS U 0 20 Y Y 1 F N 409 | F0 "U" -350 350 50 H V C CNN 410 | F1 "Memory_Flash_W25Q32JVSS" 300 350 50 H V C CNN 411 | F2 "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" 0 0 50 H I C CNN 412 | F3 "" 0 0 50 H I C CNN 413 | ALIAS W25Q128JVS 414 | $FPLIST 415 | SOIC*5.23x5.23mm*P1.27mm* 416 | $ENDFPLIST 417 | DRAW 418 | S -400 300 400 -300 0 1 10 f 419 | X ~CS 1 -500 100 100 R 50 50 1 1 I 420 | X DO(IO1) 2 500 100 100 L 50 50 1 1 B 421 | X IO2 3 500 -100 100 L 50 50 1 1 B 422 | X GND 4 0 -400 100 U 50 50 1 1 W 423 | X DI(IO0) 5 500 200 100 L 50 50 1 1 B 424 | X CLK 6 -500 -100 100 R 50 50 1 1 I 425 | X IO3 7 500 -200 100 L 50 50 1 1 B 426 | X VCC 8 0 400 100 D 50 50 1 1 W 427 | ENDDRAW 428 | ENDDEF 429 | # 430 | # Switch_SW_Push 431 | # 432 | DEF Switch_SW_Push SW 0 40 N N 1 F N 433 | F0 "SW" 50 100 50 H V L CNN 434 | F1 "Switch_SW_Push" 0 -60 50 H V C CNN 435 | F2 "" 0 200 50 H I C CNN 436 | F3 "" 0 200 50 H I C CNN 437 | DRAW 438 | C -80 0 20 0 1 0 N 439 | C 80 0 20 0 1 0 N 440 | P 2 0 1 0 0 50 0 120 N 441 | P 2 0 1 0 100 50 -100 50 N 442 | X 1 1 -200 0 100 R 50 50 0 1 P 443 | X 2 2 200 0 100 L 50 50 0 1 P 444 | ENDDRAW 445 | ENDDEF 446 | # 447 | # Switch_SW_SPST 448 | # 449 | DEF Switch_SW_SPST SW 0 0 Y N 1 F N 450 | F0 "SW" 0 125 50 H V C CNN 451 | F1 "Switch_SW_SPST" 0 -100 50 H V C CNN 452 | F2 "" 0 0 50 H I C CNN 453 | F3 "" 0 0 50 H I C CNN 454 | DRAW 455 | C -80 0 20 0 0 0 N 456 | C 80 0 20 0 0 0 N 457 | P 2 0 0 0 -60 10 60 70 N 458 | X A 1 -200 0 100 R 50 50 1 1 P 459 | X B 2 200 0 100 L 50 50 1 1 P 460 | ENDDRAW 461 | ENDDEF 462 | # 463 | # hunter-cat-nfc_PN7150B0HN_C11002E-PN7150B0HN_C11002E 464 | # 465 | DEF hunter-cat-nfc_PN7150B0HN_C11002E-PN7150B0HN_C11002E U 0 40 Y Y 1 F N 466 | F0 "U" -600 1200 50 H V L BNN 467 | F1 "hunter-cat-nfc_PN7150B0HN_C11002E-PN7150B0HN_C11002E" -600 -1301 50 H V L BNN 468 | F2 "Package_DFN_QFN:QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm" 0 0 50 H I L BNN 469 | F3 "" 0 0 50 H I L BNN 470 | DRAW 471 | S -600 1150 600 -1150 0 0 10 f 472 | X I2CADR0 1 -800 300 200 R 40 40 0 0 I 473 | X VEN 10 -800 -800 200 R 40 40 0 0 I 474 | X VBAT2 12 800 500 200 L 40 40 0 0 W 475 | X VBAT1 13 800 600 200 L 40 40 0 0 W 476 | X VDD(TX) 14 800 800 200 L 40 40 0 0 W 477 | X RXN 15 -800 600 200 R 40 40 0 0 I 478 | X RXP 16 -800 700 200 R 40 40 0 0 I 479 | X VDD(MID) 17 800 300 200 L 40 40 0 0 W 480 | X TX2 18 800 -100 200 L 40 40 0 0 O 481 | X VSS(TX) 19 800 -900 200 L 40 40 0 0 W 482 | X VSS 2 800 -1100 200 L 40 40 0 0 W 483 | X TX1 21 800 0 200 L 40 40 0 0 O 484 | X VDD(TX_IN) 22 800 400 200 L 40 40 0 0 W 485 | X VBAT 26 800 700 200 L 40 40 0 0 W 486 | X VSS 27 800 -1100 200 L 40 40 0 0 W 487 | X VDDA 28 800 900 200 L 40 40 0 0 W 488 | X VDD 29 800 1000 200 L 40 40 0 0 W 489 | X I2CADR1 3 -800 200 200 R 40 40 0 0 I 490 | X VDDD 30 800 1100 200 L 40 40 0 0 W 491 | X NFC_CLK_XTAL1 36 -800 -400 200 R 40 40 0 0 I 492 | X NFC_CLK_XTAL2 37 -800 -500 200 R 40 40 0 0 O 493 | X VSS(PAD) 4 800 -1000 200 L 40 40 0 0 W 494 | X CLK_REQ 40 800 -200 200 L 40 40 0 0 O 495 | X VSS 41 800 -1100 200 L 40 40 0 0 W 496 | X I2CSDA 5 -800 0 200 R 40 40 0 0 B 497 | X VDD(PAD) 6 800 200 200 L 40 40 0 0 W 498 | X I2CSCL 7 -800 100 200 R 40 40 0 0 I C 499 | X IRQ 8 800 -300 200 L 40 40 0 0 O 500 | X VSS 9 800 -1100 200 L 40 40 0 0 W 501 | ENDDRAW 502 | ENDDEF 503 | # 504 | # power_+3V3 505 | # 506 | DEF power_+3V3 #PWR 0 0 Y Y 1 F P 507 | F0 "#PWR" 0 -150 50 H I C CNN 508 | F1 "power_+3V3" 0 140 50 H V C CNN 509 | F2 "" 0 0 50 H I C CNN 510 | F3 "" 0 0 50 H I C CNN 511 | ALIAS +3.3V 512 | DRAW 513 | P 2 0 1 0 -30 50 0 100 N 514 | P 2 0 1 0 0 0 0 100 N 515 | P 2 0 1 0 0 100 30 50 N 516 | X +3V3 1 0 0 0 U 50 50 1 1 W N 517 | ENDDRAW 518 | ENDDEF 519 | # 520 | # power_+BATT 521 | # 522 | DEF power_+BATT #PWR 0 0 Y Y 1 F P 523 | F0 "#PWR" 0 -150 50 H I C CNN 524 | F1 "power_+BATT" 0 140 50 H V C CNN 525 | F2 "" 0 0 50 H I C CNN 526 | F3 "" 0 0 50 H I C CNN 527 | DRAW 528 | P 2 0 1 0 -30 50 0 100 N 529 | P 2 0 1 0 0 0 0 100 N 530 | P 2 0 1 0 0 100 30 50 N 531 | X +BATT 1 0 0 0 U 50 50 1 1 W N 532 | ENDDRAW 533 | ENDDEF 534 | # 535 | # power_GND 536 | # 537 | DEF power_GND #PWR 0 0 Y Y 1 F P 538 | F0 "#PWR" 0 -250 50 H I C CNN 539 | F1 "power_GND" 0 -150 50 H V C CNN 540 | F2 "" 0 0 50 H I C CNN 541 | F3 "" 0 0 50 H I C CNN 542 | DRAW 543 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 544 | X GND 1 0 0 0 D 50 50 1 1 W N 545 | ENDDRAW 546 | ENDDEF 547 | # 548 | # power_VBUS 549 | # 550 | DEF power_VBUS #PWR 0 0 Y Y 1 F P 551 | F0 "#PWR" 0 -150 50 H I C CNN 552 | F1 "power_VBUS" 0 150 50 H V C CNN 553 | F2 "" 0 0 50 H I C CNN 554 | F3 "" 0 0 50 H I C CNN 555 | DRAW 556 | P 2 0 1 0 -30 50 0 100 N 557 | P 2 0 1 0 0 0 0 100 N 558 | P 2 0 1 0 0 100 30 50 N 559 | X VBUS 1 0 0 0 U 50 50 1 1 W N 560 | ENDDRAW 561 | ENDDEF 562 | # 563 | #End Library 564 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP PN7150B0HN_C11002E-PN7150B0HN_C11002E-HunterCat-NFC-rescue 4 | F https://www.mouser.mx/datasheet/2/302/PN7150-1386066.pdf 5 | $ENDCMP 6 | # 7 | #End Doc Library 8 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC-rescue.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # AP2112K-3.3-Regulator_Linear 5 | # 6 | DEF AP2112K-3.3-Regulator_Linear U 0 10 Y Y 1 F N 7 | F0 "U" -200 225 50 H V L CNN 8 | F1 "AP2112K-3.3-Regulator_Linear" 0 225 50 H V L CNN 9 | F2 "Package_TO_SOT_SMD:SOT-23-5" 0 325 50 H I C CNN 10 | F3 "" 0 100 50 H I C CNN 11 | $FPLIST 12 | SOT?23?5* 13 | $ENDFPLIST 14 | DRAW 15 | S -200 175 200 -200 0 1 10 f 16 | X VIN 1 -300 100 100 R 50 50 1 1 W 17 | X GND 2 0 -300 100 U 50 50 1 1 W 18 | X EN 3 -300 0 100 R 50 50 1 1 I 19 | X NC 4 300 0 100 L 50 50 1 1 N N 20 | X VOUT 5 300 100 100 L 50 50 1 1 w 21 | ENDDRAW 22 | ENDDEF 23 | # 24 | # ATSAMD21E18A-Electronic_Cats 25 | # 26 | DEF ATSAMD21E18A-Electronic_Cats U 0 40 Y Y 1 F N 27 | F0 "U" -470 1710 45 H V L BNN 28 | F1 "ATSAMD21E18A-Electronic_Cats" 820 1730 45 H V L BNN 29 | F2 "Package_QFP:TQFP-32_7x7mm_P0.8mm" 30 150 20 H I C CNN 30 | F3 "" 0 0 60 H I C CNN 31 | $FPLIST 32 | *QFN32_5MM* 33 | $ENDFPLIST 34 | DRAW 35 | S 1200 1700 -470 -1700 0 1 0 f 36 | P 2 1 0 0 1200 1700 1200 -1700 N 37 | X PA00/EINT0/SERCOM1.0 1 1400 1600 200 L 40 40 1 1 B 38 | X GND 10 -670 -1140 200 R 40 40 1 1 W 39 | X PA08/NMI/I2C/AIN16/SERCOM0+2.0/I2SD1 11 1400 700 200 L 40 40 1 1 B 40 | X PA09/I2C/EINT9/AIN17/SERCOM0+2.1/I2SMC 12 1400 600 200 L 40 40 1 1 B 41 | X PA10/EINT10/AIN18/SERCOM0+2.2/I2SCK 13 1400 500 200 L 40 40 1 1 B 42 | X PA11/EINT11/AIN19/SERCOM0+2.3/I2SF0 14 1400 400 200 L 40 40 1 1 B 43 | X PA14/EINT14/SERCOM2+4.2 15 1400 0 200 L 40 40 1 1 B 44 | X PA15/EINT15/SERCOM3+4.3 16 1400 -100 200 L 40 40 1 1 B 45 | X PA16/I2C/EINT0/SERCOM1+3.0 17 1400 -200 200 L 40 40 1 1 B 46 | X PA17/I2C/EINT1/SERCOM1+3.1 18 1400 -300 200 L 40 40 1 1 B 47 | X PA18/EINT2/SERCOM1+3.2 19 1400 -400 200 L 40 40 1 1 B 48 | X PA01/EINT1/SERCOM1.1 2 1400 1500 200 L 40 40 1 1 B 49 | X PA19/EINT3/SERCOM1+3.3/I2SD0 20 1400 -500 200 L 40 40 1 1 B 50 | X PA22/I2C/EINT6/SERCOM3+5.0 21 1400 -900 200 L 40 40 1 1 B 51 | X PA23/I2C/EINT7/SERCOM3+5.1/SOF 22 1400 -1000 200 L 40 40 1 1 B 52 | X PA24/EINT2/SERCOM3+5.2/D- 23 1400 -1100 200 L 40 40 1 1 B 53 | X PA25/EINT13/SERCOM3+5.3/D+ 24 1400 -1200 200 L 40 40 1 1 B 54 | X PA27/EINT15 25 1400 -1300 200 L 40 40 1 1 B 55 | X /RESET 26 -670 1500 200 R 40 40 1 1 B I 56 | X PA28/EINT8 27 1400 -1400 200 L 40 40 1 1 B 57 | X GNDA 28 -670 -1340 200 R 40 40 1 1 W 58 | X VDDCORE 29 -670 930 200 R 40 40 1 1 W 59 | X PA02/EINT2/AIN0/Y0/VOUT 3 1400 1400 200 L 40 40 1 1 B 60 | X VDDIN 30 -670 1080 200 R 40 40 1 1 W 61 | X PA30/EINT10/SECOM1.2/SWCLK 31 1400 -1500 200 L 40 40 1 1 B 62 | X PA31/EINT11/SECOM1.3/SWDIO 32 1400 -1600 200 L 40 40 1 1 B 63 | X PA03/EINT3/VREFA/AIN1 4 1400 1300 200 L 40 40 1 1 B 64 | X PA04/EINT4/VREFB/AIN4/SERCOM0.0 5 1400 1200 200 L 40 40 1 1 B 65 | X PA05/EINT5/AIN5/SERCOM0.1 6 1400 1100 200 L 40 40 1 1 B 66 | X PA06/EINT6/AIN6/SERCOM0.2 7 1400 1000 200 L 40 40 1 1 B 67 | X PA07/EINT7/AIN7/SERCOM0.3/I2SD0 8 1400 900 200 L 40 40 1 1 B 68 | X VDDA 9 -670 1210 200 R 40 40 1 1 W 69 | ENDDRAW 70 | ENDDEF 71 | # 72 | # PN7150B0HN_C11002E-PN7150B0HN_C11002E-HunterCat-NFC-rescue 73 | # 74 | DEF PN7150B0HN_C11002E-PN7150B0HN_C11002E-HunterCat-NFC-rescue U 0 40 Y Y 1 F N 75 | F0 "U" -600 1200 50 H V L BNN 76 | F1 "PN7150B0HN_C11002E-PN7150B0HN_C11002E-HunterCat-NFC-rescue" -600 -1301 50 H V L BNN 77 | F2 "Package_DFN_QFN:QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm" 0 0 50 H I L BNN 78 | F3 "" 0 0 50 H I L BNN 79 | DRAW 80 | S -600 1150 600 -1150 0 0 10 f 81 | X I2CADR0 1 -800 300 200 R 40 40 0 0 I 82 | X VEN 10 -800 -800 200 R 40 40 0 0 I 83 | X VBAT2 12 800 500 200 L 40 40 0 0 W 84 | X VBAT1 13 800 600 200 L 40 40 0 0 W 85 | X VDD(TX) 14 800 800 200 L 40 40 0 0 W 86 | X RXN 15 -800 600 200 R 40 40 0 0 I 87 | X RXP 16 -800 700 200 R 40 40 0 0 I 88 | X VDD(MID) 17 800 300 200 L 40 40 0 0 W 89 | X TX2 18 800 -100 200 L 40 40 0 0 O 90 | X VSS(TX) 19 800 -900 200 L 40 40 0 0 W 91 | X VSS 2 800 -1100 200 L 40 40 0 0 W 92 | X TX1 21 800 0 200 L 40 40 0 0 O 93 | X VDD(TX_IN) 22 800 400 200 L 40 40 0 0 W 94 | X VBAT 26 800 700 200 L 40 40 0 0 W 95 | X VSS 27 800 -1100 200 L 40 40 0 0 W 96 | X VDDA 28 800 900 200 L 40 40 0 0 W 97 | X VDD 29 800 1000 200 L 40 40 0 0 W 98 | X I2CADR1 3 -800 200 200 R 40 40 0 0 I 99 | X VDDD 30 800 1100 200 L 40 40 0 0 W 100 | X NFC_CLK_XTAL1 36 -800 -400 200 R 40 40 0 0 I 101 | X NFC_CLK_XTAL2 37 -800 -500 200 R 40 40 0 0 O 102 | X VSS(PAD) 4 800 -1000 200 L 40 40 0 0 W 103 | X CLK_REQ 40 800 -200 200 L 40 40 0 0 O 104 | X VSS 41 800 -1100 200 L 40 40 0 0 W 105 | X I2CSDA 5 -800 0 200 R 40 40 0 0 B 106 | X VDD(PAD) 6 800 200 200 L 40 40 0 0 W 107 | X I2CSCL 7 -800 100 200 R 40 40 0 0 I C 108 | X IRQ 8 800 -300 200 L 40 40 0 0 O 109 | X VSS 9 800 -1100 200 L 40 40 0 0 W 110 | ENDDRAW 111 | ENDDEF 112 | # 113 | # USB_C_Plug_USB2.0-Connector 114 | # 115 | DEF USB_C_Plug_USB2.0-Connector P 0 40 Y Y 1 F N 116 | F0 "P" -400 750 50 H V L CNN 117 | F1 "USB_C_Plug_USB2.0-Connector" 500 750 50 H V R CNN 118 | F2 "" 150 0 50 H I C CNN 119 | F3 "" 150 0 50 H I C CNN 120 | $FPLIST 121 | USB*C*Plug* 122 | $ENDFPLIST 123 | DRAW 124 | A -275 -150 75 -1799 -1 0 1 20 N -350 -150 -200 -150 125 | A -275 -150 25 -1799 -1 0 1 10 N -300 -150 -250 -150 126 | A -275 -150 25 -1799 -1 0 1 10 F -300 -150 -250 -150 127 | A -275 150 25 1 1799 0 1 10 F -250 150 -300 150 128 | A -275 150 25 1 1799 0 1 10 N -250 150 -300 150 129 | A -275 150 75 1 1799 0 1 20 N -200 150 -350 150 130 | C -100 45 25 0 1 10 F 131 | C 0 -230 50 0 1 0 F 132 | S -10 -700 10 -660 0 0 0 N 133 | S 400 -90 360 -110 0 0 0 N 134 | S 400 110 360 90 0 0 0 N 135 | S 400 310 360 290 0 0 0 N 136 | S 400 410 360 390 0 0 0 N 137 | S 400 610 360 590 0 0 0 N 138 | S -400 700 400 -700 0 1 10 f 139 | S -300 -150 -250 150 0 1 10 F 140 | S 75 70 125 120 0 1 10 F 141 | P 2 0 1 20 -350 -150 -350 150 N 142 | P 2 0 1 20 -200 150 -200 -150 N 143 | P 2 0 1 20 0 -230 0 170 N 144 | P 3 0 1 20 0 -130 -100 -30 -100 20 N 145 | P 3 0 1 20 0 -80 100 20 100 70 N 146 | P 4 0 1 10 -50 170 0 270 50 170 -50 170 F 147 | X GND A1 0 -900 200 U 50 50 1 1 W 148 | X GND A12 0 -900 200 U 50 50 1 1 P N 149 | X VBUS A4 600 600 200 L 50 50 1 1 W 150 | X CC A5 600 400 200 L 50 50 1 1 B 151 | X D+ A6 600 -100 200 L 50 50 1 1 B 152 | X D- A7 600 100 200 L 50 50 1 1 B 153 | X VBUS A9 600 600 200 L 50 50 1 1 P N 154 | X GND B1 0 -900 200 U 50 50 1 1 P N 155 | X GND B12 0 -900 200 U 50 50 1 1 P N 156 | X VBUS B4 600 600 200 L 50 50 1 1 P N 157 | X VCONN B5 600 300 200 L 50 50 1 1 B 158 | X VBUS B9 600 600 200 L 50 50 1 1 P N 159 | X SHIELD S1 -300 -900 200 U 50 50 1 1 P 160 | ENDDRAW 161 | ENDDEF 162 | # 163 | #End Library 164 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC.csv: -------------------------------------------------------------------------------- 1 | "Item","Qty","Reference(s)","Value","LCSC#","manf#","provedor" 2 | "1","2","C1, C15","27pF","","EC","" 3 | "2","5","C2, C5, C6, C8, C22","1uF","C26413","EC","LCSC" 4 | "3","2","C3, C4","10pF","","885012007076","LCSC" 5 | "4","2","C7, C9","100nF","C387984","885012207072","LCSC" 6 | "5","2","C10, C11","1nF/16V","","CC0201JRX7R7BB102","MOUSER" 7 | "6","2","C12, C13","680pF","","885012206107","MOUSER" 8 | "7","2","C14, C18","100pF/50V","","06035A101JAT4A","MOUSER" 9 | "8","3","C16, C23, C24","10uF","C326057","C0805C106K9PACTU","LCSC" 10 | "9","10","C17, C21, C25, C26, C27, C28, C29, C30, C31, C32","0.1uF","","EC","" 11 | "10","2","C19, C20","120pF","","C0603C121J5GAC","LCSC" 12 | "11","4","D1, D2, D3, D4","LED","C130114","-","LCSC" 13 | "12","1","D5","MBR120","C723989","-","LCSC" 14 | "13","1","F1","0.5A","-","MFU0805FF00500P100","MOUSER" 15 | "14","4","H1, H2, H3, H4","MountingHole","-","-","-" 16 | "15","1","J1","Battery","-","-","-" 17 | "16","1","JP1","BOOT","","","" 18 | "17","2","L1, L2","160nH","C434822","MLJ1608WR16JT000","LCSC" 19 | "18","1","L3","L","-","-","-" 20 | "19","1","P1","USB_C_Plug_USB2.0","C393939","-","LCSC" 21 | "20","1","Q1","DMG3415U-7","C96616","-","LCSC" 22 | "21","3","R1, R2, R24","10K","C15401","-","LCSC" 23 | "22","5","R3, R5, R6, R19, R20","100K","C15458","ERJ6RBD1003V","LCSC" 24 | "23","3","R4, R17, R18","330","C517454","CRCW08051K50FKEAC","LCSC" 25 | "24","2","R7, R12","1K","C517454","CRCW08051K50FKEAC","LCSC" 26 | "25","2","R8, R9","5k1","C131715","CR0805-FX-5101ELF","LCSC" 27 | "26","1","R10","4.7K","C116693","ERJ-3GEYJ472V","LCSC" 28 | "27","2","R11, R13","2k2","C217937","RC0603JR-072K2L","LCSC" 29 | "28","2","R14, R15","3.24R","","RC0603FR-073R4L","MOUSER" 30 | "29","2","R21, R22","27","","","" 31 | "30","1","SW1","RESET","C318890","-","LCSC" 32 | "31","1","SW2","GPIO","C318890","-","LCSC" 33 | "32","1","SW3","GPIO1","C318890","-","LCSC" 34 | "33","1","SW4","GPIO2","C318890","-","LCSC" 35 | "34","1","SW5","ON","-","-","-" 36 | "35","1","U1","RP2040","","","" 37 | "36","1","U2","PN7150B0HN_C11002E-PN7150B0HN_C11002E","-","PN7150B0HN/C11002","MOUSER" 38 | "37","1","U3","MCP73831-3-OT","-","MCP73831-3-OT","MOUSER" 39 | "38","1","U4","AP2112K-3.3","-","AP2112K-3.3","MOUSER" 40 | "39","1","U5","W25Q16JV","","W25Q16JVUUIQ","" 41 | "40","1","Y1","27.12Mhz","-","520-271.2-6-37-JTNT","MOUSER" 42 | "41","1","Y2","12Mhz","C709001","CM4012M00020T8188026","" 43 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 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 | 6, 37 | 7, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 14, 45 | 15, 46 | 16, 47 | 17, 48 | 18, 49 | 19, 50 | 20, 51 | 21, 52 | 22, 53 | 23, 54 | 24, 55 | 25, 56 | 26, 57 | 27, 58 | 28, 59 | 29, 60 | 30, 61 | 32, 62 | 33, 63 | 34, 64 | 35, 65 | 36 66 | ], 67 | "visible_layers": "000dfff_80000001", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "HunterCat-NFC.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.0, 37 | "height": 0.55, 38 | "width": 0.65 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 0.7, 43 | "silk_text_size_v": 0.7, 44 | "silk_text_thickness": 0.12, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [ 52 | { 53 | "gap": 0.0, 54 | "via_gap": 0.0, 55 | "width": 0.0 56 | } 57 | ], 58 | "drc_exclusions": [], 59 | "meta": { 60 | "filename": "board_design_settings.json", 61 | "version": 2 62 | }, 63 | "rule_severities": { 64 | "annular_width": "error", 65 | "clearance": "error", 66 | "copper_edge_clearance": "error", 67 | "courtyards_overlap": "error", 68 | "diff_pair_gap_out_of_range": "error", 69 | "diff_pair_uncoupled_length_too_long": "error", 70 | "drill_out_of_range": "error", 71 | "duplicate_footprints": "warning", 72 | "extra_footprint": "warning", 73 | "footprint_type_mismatch": "error", 74 | "hole_clearance": "error", 75 | "hole_near_hole": "error", 76 | "invalid_outline": "error", 77 | "item_on_disabled_layer": "error", 78 | "items_not_allowed": "error", 79 | "length_out_of_range": "error", 80 | "malformed_courtyard": "error", 81 | "microvia_drill_out_of_range": "error", 82 | "missing_courtyard": "ignore", 83 | "missing_footprint": "warning", 84 | "net_conflict": "warning", 85 | "npth_inside_courtyard": "ignore", 86 | "padstack": "error", 87 | "pth_inside_courtyard": "ignore", 88 | "shorting_items": "error", 89 | "silk_over_copper": "warning", 90 | "silk_overlap": "warning", 91 | "skew_out_of_range": "error", 92 | "through_hole_pad_without_hole": "error", 93 | "too_many_vias": "error", 94 | "track_dangling": "warning", 95 | "track_width": "error", 96 | "tracks_crossing": "error", 97 | "unconnected_items": "error", 98 | "unresolved_variable": "error", 99 | "via_dangling": "warning", 100 | "zone_has_empty_net": "error", 101 | "zones_intersect": "error" 102 | }, 103 | "rule_severitieslegacy_courtyards_overlap": true, 104 | "rule_severitieslegacy_no_courtyard_defined": false, 105 | "rules": { 106 | "allow_blind_buried_vias": false, 107 | "allow_microvias": false, 108 | "max_error": 0.005, 109 | "min_clearance": 0.0, 110 | "min_copper_edge_clearance": 0.024999999999999998, 111 | "min_hole_clearance": 0.25, 112 | "min_hole_to_hole": 0.25, 113 | "min_microvia_diameter": 0.19999999999999998, 114 | "min_microvia_drill": 0.09999999999999999, 115 | "min_silk_clearance": 0.0, 116 | "min_through_hole_diameter": 0.3, 117 | "min_track_width": 0.19999999999999998, 118 | "min_via_annular_width": 0.049999999999999996, 119 | "min_via_diameter": 0.39999999999999997, 120 | "use_height_for_length_calcs": true 121 | }, 122 | "track_widths": [ 123 | 0.0, 124 | 0.2, 125 | 0.25, 126 | 0.3, 127 | 0.35, 128 | 0.5 129 | ], 130 | "via_dimensions": [ 131 | { 132 | "diameter": 0.0, 133 | "drill": 0.0 134 | }, 135 | { 136 | "diameter": 0.6, 137 | "drill": 0.3 138 | }, 139 | { 140 | "diameter": 0.7, 141 | "drill": 0.35 142 | }, 143 | { 144 | "diameter": 0.8, 145 | "drill": 0.4 146 | } 147 | ], 148 | "zones_allow_external_fillets": false, 149 | "zones_use_no_outline": true 150 | }, 151 | "layer_presets": [] 152 | }, 153 | "boards": [], 154 | "cvpcb": { 155 | "equivalence_files": [] 156 | }, 157 | "erc": { 158 | "erc_exclusions": [], 159 | "meta": { 160 | "version": 0 161 | }, 162 | "pin_map": [ 163 | [ 164 | 0, 165 | 0, 166 | 0, 167 | 0, 168 | 0, 169 | 0, 170 | 1, 171 | 0, 172 | 0, 173 | 0, 174 | 0, 175 | 2 176 | ], 177 | [ 178 | 0, 179 | 2, 180 | 0, 181 | 1, 182 | 0, 183 | 0, 184 | 1, 185 | 0, 186 | 2, 187 | 2, 188 | 2, 189 | 2 190 | ], 191 | [ 192 | 0, 193 | 0, 194 | 0, 195 | 0, 196 | 0, 197 | 0, 198 | 1, 199 | 0, 200 | 1, 201 | 0, 202 | 1, 203 | 2 204 | ], 205 | [ 206 | 0, 207 | 1, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 1, 213 | 1, 214 | 2, 215 | 1, 216 | 1, 217 | 2 218 | ], 219 | [ 220 | 0, 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 0, 226 | 1, 227 | 0, 228 | 0, 229 | 0, 230 | 0, 231 | 2 232 | ], 233 | [ 234 | 0, 235 | 0, 236 | 0, 237 | 0, 238 | 0, 239 | 0, 240 | 0, 241 | 0, 242 | 0, 243 | 0, 244 | 0, 245 | 2 246 | ], 247 | [ 248 | 1, 249 | 1, 250 | 1, 251 | 1, 252 | 1, 253 | 0, 254 | 1, 255 | 1, 256 | 1, 257 | 1, 258 | 1, 259 | 2 260 | ], 261 | [ 262 | 0, 263 | 0, 264 | 0, 265 | 1, 266 | 0, 267 | 0, 268 | 1, 269 | 0, 270 | 0, 271 | 0, 272 | 0, 273 | 2 274 | ], 275 | [ 276 | 0, 277 | 2, 278 | 1, 279 | 2, 280 | 0, 281 | 0, 282 | 1, 283 | 0, 284 | 2, 285 | 2, 286 | 2, 287 | 2 288 | ], 289 | [ 290 | 0, 291 | 2, 292 | 0, 293 | 1, 294 | 0, 295 | 0, 296 | 1, 297 | 0, 298 | 2, 299 | 0, 300 | 0, 301 | 2 302 | ], 303 | [ 304 | 0, 305 | 2, 306 | 1, 307 | 1, 308 | 0, 309 | 0, 310 | 1, 311 | 0, 312 | 2, 313 | 0, 314 | 0, 315 | 2 316 | ], 317 | [ 318 | 2, 319 | 2, 320 | 2, 321 | 2, 322 | 2, 323 | 2, 324 | 2, 325 | 2, 326 | 2, 327 | 2, 328 | 2, 329 | 2 330 | ] 331 | ], 332 | "rule_severities": { 333 | "bus_definition_conflict": "error", 334 | "bus_entry_needed": "error", 335 | "bus_label_syntax": "error", 336 | "bus_to_bus_conflict": "error", 337 | "bus_to_net_conflict": "error", 338 | "different_unit_footprint": "error", 339 | "different_unit_net": "error", 340 | "duplicate_reference": "error", 341 | "duplicate_sheet_names": "error", 342 | "extra_units": "error", 343 | "global_label_dangling": "warning", 344 | "hier_label_mismatch": "error", 345 | "label_dangling": "error", 346 | "lib_symbol_issues": "warning", 347 | "multiple_net_names": "warning", 348 | "net_not_bus_member": "warning", 349 | "no_connect_connected": "warning", 350 | "no_connect_dangling": "warning", 351 | "pin_not_connected": "error", 352 | "pin_not_driven": "error", 353 | "pin_to_pin": "warning", 354 | "power_pin_not_driven": "error", 355 | "similar_labels": "warning", 356 | "unannotated": "error", 357 | "unit_value_mismatch": "error", 358 | "unresolved_variable": "error", 359 | "wire_dangling": "error" 360 | } 361 | }, 362 | "libraries": { 363 | "pinned_footprint_libs": [], 364 | "pinned_symbol_libs": [] 365 | }, 366 | "meta": { 367 | "filename": "HunterCat-NFC.kicad_pro", 368 | "version": 1 369 | }, 370 | "net_settings": { 371 | "classes": [ 372 | { 373 | "bus_width": 12.0, 374 | "clearance": 0.15, 375 | "diff_pair_gap": 0.25, 376 | "diff_pair_via_gap": 0.25, 377 | "diff_pair_width": 0.2, 378 | "line_style": 0, 379 | "microvia_diameter": 0.3, 380 | "microvia_drill": 0.1, 381 | "name": "Default", 382 | "pcb_color": "rgba(0, 0, 0, 0.000)", 383 | "schematic_color": "rgba(0, 0, 0, 0.000)", 384 | "track_width": 0.35, 385 | "via_diameter": 0.6, 386 | "via_drill": 0.3, 387 | "wire_width": 6.0 388 | } 389 | ], 390 | "meta": { 391 | "version": 2 392 | }, 393 | "net_colors": null 394 | }, 395 | "pcbnew": { 396 | "last_paths": { 397 | "gencad": "", 398 | "idf": "", 399 | "netlist": "HunterCat-NFC.net", 400 | "specctra_dsn": "", 401 | "step": "", 402 | "vrml": "" 403 | }, 404 | "page_layout_descr_file": "" 405 | }, 406 | "schematic": { 407 | "annotate_start_num": 0, 408 | "drawing": { 409 | "default_line_thickness": 6.0, 410 | "default_text_size": 50.0, 411 | "field_names": [], 412 | "intersheets_ref_own_page": false, 413 | "intersheets_ref_prefix": "", 414 | "intersheets_ref_short": false, 415 | "intersheets_ref_show": false, 416 | "intersheets_ref_suffix": "", 417 | "junction_size_choice": 3, 418 | "label_size_ratio": 0.25, 419 | "pin_symbol_size": 25.0, 420 | "text_offset_ratio": 0.08 421 | }, 422 | "legacy_lib_dir": "", 423 | "legacy_lib_list": [], 424 | "meta": { 425 | "version": 1 426 | }, 427 | "net_format_name": "Pcbnew", 428 | "ngspice": { 429 | "fix_include_paths": true, 430 | "fix_passive_vals": false, 431 | "meta": { 432 | "version": 0 433 | }, 434 | "model_mode": 0, 435 | "workbook_filename": "" 436 | }, 437 | "page_layout_descr_file": "", 438 | "plot_directory": "", 439 | "spice_adjust_passive_values": false, 440 | "spice_external_command": "spice \"%I\"", 441 | "subpart_first_id": 65, 442 | "subpart_id_separator": 0 443 | }, 444 | "sheets": [ 445 | [ 446 | "644ae9fc-3c8e-4089-866e-a12bf371c3e9", 447 | "" 448 | ] 449 | ], 450 | "text_variables": {} 451 | } 452 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElectronicCats/HunterCatNFC/b1ac81f326e1fd372ee18d467b212df7d3ace633/Hardware/HunterCat-NFC/HunterCat-NFC.pdf -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/HunterCat-NFC.pro: -------------------------------------------------------------------------------- 1 | update=20/01/2021 07:13:49 p. m. 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 | [schematic_editor] 16 | version=1 17 | PageLayoutDescrFile= 18 | PlotDirectoryName= 19 | SubpartIdSeparator=0 20 | SubpartFirstId=65 21 | NetFmtName=Pcbnew 22 | SpiceAjustPassiveValues=0 23 | LabSize=50 24 | ERC_TestSimilarLabels=1 25 | [pcbnew] 26 | version=1 27 | PageLayoutDescrFile= 28 | LastNetListRead=HunterCat-NFC.net 29 | CopperLayerCount=2 30 | BoardThickness=1.6 31 | AllowMicroVias=0 32 | AllowBlindVias=0 33 | RequireCourtyardDefinitions=0 34 | ProhibitOverlappingCourtyards=1 35 | MinTrackWidth=0.2 36 | MinViaDiameter=0.4 37 | MinViaDrill=0.3 38 | MinMicroViaDiameter=0.2 39 | MinMicroViaDrill=0.09999999999999999 40 | MinHoleToHole=0.25 41 | TrackWidth1=0.35 42 | TrackWidth2=0.2 43 | TrackWidth3=0.25 44 | TrackWidth4=0.3 45 | TrackWidth5=0.35 46 | TrackWidth6=0.5 47 | ViaDiameter1=0.6 48 | ViaDrill1=0.3 49 | dPairWidth1=0.2 50 | dPairGap1=0.25 51 | dPairViaGap1=0.25 52 | SilkLineWidth=0.12 53 | SilkTextSizeV=0.7 54 | SilkTextSizeH=0.7 55 | SilkTextSizeThickness=0.12 56 | SilkTextItalic=0 57 | SilkTextUpright=1 58 | CopperLineWidth=0.2 59 | CopperTextSizeV=1.5 60 | CopperTextSizeH=1.5 61 | CopperTextThickness=0.3 62 | CopperTextItalic=0 63 | CopperTextUpright=1 64 | EdgeCutLineWidth=0.05 65 | CourtyardLineWidth=0.05 66 | OthersLineWidth=0.15 67 | OthersTextSizeV=1 68 | OthersTextSizeH=1 69 | OthersTextSizeThickness=0.15 70 | OthersTextItalic=0 71 | OthersTextUpright=1 72 | SolderMaskClearance=0 73 | SolderMaskMinWidth=0 74 | SolderPasteClearance=0 75 | SolderPasteRatio=-0 76 | [pcbnew/Layer.F.Cu] 77 | Name=F.Cu 78 | Type=0 79 | Enabled=1 80 | [pcbnew/Layer.In1.Cu] 81 | Name=In1.Cu 82 | Type=0 83 | Enabled=0 84 | [pcbnew/Layer.In2.Cu] 85 | Name=In2.Cu 86 | Type=0 87 | Enabled=0 88 | [pcbnew/Layer.In3.Cu] 89 | Name=In3.Cu 90 | Type=0 91 | Enabled=0 92 | [pcbnew/Layer.In4.Cu] 93 | Name=In4.Cu 94 | Type=0 95 | Enabled=0 96 | [pcbnew/Layer.In5.Cu] 97 | Name=In5.Cu 98 | Type=0 99 | Enabled=0 100 | [pcbnew/Layer.In6.Cu] 101 | Name=In6.Cu 102 | Type=0 103 | Enabled=0 104 | [pcbnew/Layer.In7.Cu] 105 | Name=In7.Cu 106 | Type=0 107 | Enabled=0 108 | [pcbnew/Layer.In8.Cu] 109 | Name=In8.Cu 110 | Type=0 111 | Enabled=0 112 | [pcbnew/Layer.In9.Cu] 113 | Name=In9.Cu 114 | Type=0 115 | Enabled=0 116 | [pcbnew/Layer.In10.Cu] 117 | Name=In10.Cu 118 | Type=0 119 | Enabled=0 120 | [pcbnew/Layer.In11.Cu] 121 | Name=In11.Cu 122 | Type=0 123 | Enabled=0 124 | [pcbnew/Layer.In12.Cu] 125 | Name=In12.Cu 126 | Type=0 127 | Enabled=0 128 | [pcbnew/Layer.In13.Cu] 129 | Name=In13.Cu 130 | Type=0 131 | Enabled=0 132 | [pcbnew/Layer.In14.Cu] 133 | Name=In14.Cu 134 | Type=0 135 | Enabled=0 136 | [pcbnew/Layer.In15.Cu] 137 | Name=In15.Cu 138 | Type=0 139 | Enabled=0 140 | [pcbnew/Layer.In16.Cu] 141 | Name=In16.Cu 142 | Type=0 143 | Enabled=0 144 | [pcbnew/Layer.In17.Cu] 145 | Name=In17.Cu 146 | Type=0 147 | Enabled=0 148 | [pcbnew/Layer.In18.Cu] 149 | Name=In18.Cu 150 | Type=0 151 | Enabled=0 152 | [pcbnew/Layer.In19.Cu] 153 | Name=In19.Cu 154 | Type=0 155 | Enabled=0 156 | [pcbnew/Layer.In20.Cu] 157 | Name=In20.Cu 158 | Type=0 159 | Enabled=0 160 | [pcbnew/Layer.In21.Cu] 161 | Name=In21.Cu 162 | Type=0 163 | Enabled=0 164 | [pcbnew/Layer.In22.Cu] 165 | Name=In22.Cu 166 | Type=0 167 | Enabled=0 168 | [pcbnew/Layer.In23.Cu] 169 | Name=In23.Cu 170 | Type=0 171 | Enabled=0 172 | [pcbnew/Layer.In24.Cu] 173 | Name=In24.Cu 174 | Type=0 175 | Enabled=0 176 | [pcbnew/Layer.In25.Cu] 177 | Name=In25.Cu 178 | Type=0 179 | Enabled=0 180 | [pcbnew/Layer.In26.Cu] 181 | Name=In26.Cu 182 | Type=0 183 | Enabled=0 184 | [pcbnew/Layer.In27.Cu] 185 | Name=In27.Cu 186 | Type=0 187 | Enabled=0 188 | [pcbnew/Layer.In28.Cu] 189 | Name=In28.Cu 190 | Type=0 191 | Enabled=0 192 | [pcbnew/Layer.In29.Cu] 193 | Name=In29.Cu 194 | Type=0 195 | Enabled=0 196 | [pcbnew/Layer.In30.Cu] 197 | Name=In30.Cu 198 | Type=0 199 | Enabled=0 200 | [pcbnew/Layer.B.Cu] 201 | Name=B.Cu 202 | Type=0 203 | Enabled=1 204 | [pcbnew/Layer.B.Adhes] 205 | Enabled=1 206 | [pcbnew/Layer.F.Adhes] 207 | Enabled=1 208 | [pcbnew/Layer.B.Paste] 209 | Enabled=1 210 | [pcbnew/Layer.F.Paste] 211 | Enabled=1 212 | [pcbnew/Layer.B.SilkS] 213 | Enabled=1 214 | [pcbnew/Layer.F.SilkS] 215 | Enabled=1 216 | [pcbnew/Layer.B.Mask] 217 | Enabled=1 218 | [pcbnew/Layer.F.Mask] 219 | Enabled=1 220 | [pcbnew/Layer.Dwgs.User] 221 | Enabled=1 222 | [pcbnew/Layer.Cmts.User] 223 | Enabled=1 224 | [pcbnew/Layer.Eco1.User] 225 | Enabled=1 226 | [pcbnew/Layer.Eco2.User] 227 | Enabled=1 228 | [pcbnew/Layer.Edge.Cuts] 229 | Enabled=1 230 | [pcbnew/Layer.Margin] 231 | Enabled=1 232 | [pcbnew/Layer.B.CrtYd] 233 | Enabled=1 234 | [pcbnew/Layer.F.CrtYd] 235 | Enabled=1 236 | [pcbnew/Layer.B.Fab] 237 | Enabled=1 238 | [pcbnew/Layer.F.Fab] 239 | Enabled=1 240 | [pcbnew/Layer.Rescue] 241 | Enabled=0 242 | [pcbnew/Netclasses] 243 | [pcbnew/Netclasses/Default] 244 | Name=Default 245 | Clearance=0.15 246 | TrackWidth=0.35 247 | ViaDiameter=0.6 248 | ViaDrill=0.3 249 | uViaDiameter=0.3 250 | uViaDrill=0.1 251 | dPairWidth=0.2 252 | dPairGap=0.25 253 | dPairViaGap=0.25 254 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "hunter-cat-nfc")(type "KiCad")(uri "${KIPRJMOD}/library/hunter-cat-nfc.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP PN7150B0HN_C11002E-PN7150B0HN_C11002E 4 | F https://www.mouser.mx/datasheet/2/302/PN7150-1386066.pdf 5 | $ENDCMP 6 | # 7 | #End Doc Library 8 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # ATSAMD21E18A-Electronic_Cats 5 | # 6 | DEF ATSAMD21E18A-Electronic_Cats U 0 40 Y Y 1 F N 7 | F0 "U" -470 1710 45 H V L BNN 8 | F1 "ATSAMD21E18A-Electronic_Cats" 820 1730 45 H V L BNN 9 | F2 "Package_QFP:TQFP-32_7x7mm_P0.8mm" 30 150 20 H I C CNN 10 | F3 "" 0 0 60 H I C CNN 11 | $FPLIST 12 | *QFN32_5MM* 13 | $ENDFPLIST 14 | DRAW 15 | S 1200 1700 -470 -1700 0 1 0 f 16 | P 2 1 0 0 1200 1700 1200 -1700 N 17 | X PA00/EINT0/SERCOM1.0 1 1400 1600 200 L 40 40 1 1 B 18 | X GND 10 -670 -1140 200 R 40 40 1 1 W 19 | X PA08/NMI/I2C/AIN16/SERCOM0+2.0/I2SD1 11 1400 700 200 L 40 40 1 1 B 20 | X PA09/I2C/EINT9/AIN17/SERCOM0+2.1/I2SMC 12 1400 600 200 L 40 40 1 1 B 21 | X PA10/EINT10/AIN18/SERCOM0+2.2/I2SCK 13 1400 500 200 L 40 40 1 1 B 22 | X PA11/EINT11/AIN19/SERCOM0+2.3/I2SF0 14 1400 400 200 L 40 40 1 1 B 23 | X PA14/EINT14/SERCOM2+4.2 15 1400 0 200 L 40 40 1 1 B 24 | X PA15/EINT15/SERCOM3+4.3 16 1400 -100 200 L 40 40 1 1 B 25 | X PA16/I2C/EINT0/SERCOM1+3.0 17 1400 -200 200 L 40 40 1 1 B 26 | X PA17/I2C/EINT1/SERCOM1+3.1 18 1400 -300 200 L 40 40 1 1 B 27 | X PA18/EINT2/SERCOM1+3.2 19 1400 -400 200 L 40 40 1 1 B 28 | X PA01/EINT1/SERCOM1.1 2 1400 1500 200 L 40 40 1 1 B 29 | X PA19/EINT3/SERCOM1+3.3/I2SD0 20 1400 -500 200 L 40 40 1 1 B 30 | X PA22/I2C/EINT6/SERCOM3+5.0 21 1400 -900 200 L 40 40 1 1 B 31 | X PA23/I2C/EINT7/SERCOM3+5.1/SOF 22 1400 -1000 200 L 40 40 1 1 B 32 | X PA24/EINT2/SERCOM3+5.2/D- 23 1400 -1100 200 L 40 40 1 1 B 33 | X PA25/EINT13/SERCOM3+5.3/D+ 24 1400 -1200 200 L 40 40 1 1 B 34 | X PA27/EINT15 25 1400 -1300 200 L 40 40 1 1 B 35 | X /RESET 26 -670 1500 200 R 40 40 1 1 B I 36 | X PA28/EINT8 27 1400 -1400 200 L 40 40 1 1 B 37 | X GNDA 28 -670 -1340 200 R 40 40 1 1 W 38 | X VDDCORE 29 -670 930 200 R 40 40 1 1 W 39 | X PA02/EINT2/AIN0/Y0/VOUT 3 1400 1400 200 L 40 40 1 1 B 40 | X VDDIN 30 -670 1080 200 R 40 40 1 1 W 41 | X PA30/EINT10/SECOM1.2/SWCLK 31 1400 -1500 200 L 40 40 1 1 B 42 | X PA31/EINT11/SECOM1.3/SWDIO 32 1400 -1600 200 L 40 40 1 1 B 43 | X PA03/EINT3/VREFA/AIN1 4 1400 1300 200 L 40 40 1 1 B 44 | X PA04/EINT4/VREFB/AIN4/SERCOM0.0 5 1400 1200 200 L 40 40 1 1 B 45 | X PA05/EINT5/AIN5/SERCOM0.1 6 1400 1100 200 L 40 40 1 1 B 46 | X PA06/EINT6/AIN6/SERCOM0.2 7 1400 1000 200 L 40 40 1 1 B 47 | X PA07/EINT7/AIN7/SERCOM0.3/I2SD0 8 1400 900 200 L 40 40 1 1 B 48 | X VDDA 9 -670 1210 200 R 40 40 1 1 W 49 | ENDDRAW 50 | ENDDEF 51 | # 52 | # PN7150B0HN_C11002E-PN7150B0HN_C11002E 53 | # 54 | DEF PN7150B0HN_C11002E-PN7150B0HN_C11002E U 0 40 Y Y 1 F N 55 | F0 "U" -600 1200 50 H V L BNN 56 | F1 "PN7150B0HN_C11002E-PN7150B0HN_C11002E" -600 -1301 50 H V L BNN 57 | F2 "Package_DFN_QFN:QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm" 0 0 50 H I L BNN 58 | F3 "" 0 0 50 H I L BNN 59 | DRAW 60 | S -600 1150 600 -1150 0 0 10 f 61 | X I2CADR0 1 -800 300 200 R 40 40 0 0 I 62 | X VEN 10 -800 -800 200 R 40 40 0 0 I 63 | X VBAT2 12 800 500 200 L 40 40 0 0 W 64 | X VBAT1 13 800 600 200 L 40 40 0 0 W 65 | X VDD(TX) 14 800 800 200 L 40 40 0 0 W 66 | X RXN 15 -800 600 200 R 40 40 0 0 I 67 | X RXP 16 -800 700 200 R 40 40 0 0 I 68 | X VDD(MID) 17 800 300 200 L 40 40 0 0 W 69 | X TX2 18 800 -100 200 L 40 40 0 0 O 70 | X VSS(TX) 19 800 -900 200 L 40 40 0 0 W 71 | X VSS 2 800 -1100 200 L 40 40 0 0 W 72 | X TX1 21 800 0 200 L 40 40 0 0 O 73 | X VDD(TX_IN) 22 800 400 200 L 40 40 0 0 W 74 | X VBAT 26 800 700 200 L 40 40 0 0 W 75 | X VSS 27 800 -1100 200 L 40 40 0 0 W 76 | X VDDA 28 800 900 200 L 40 40 0 0 W 77 | X VDD 29 800 1000 200 L 40 40 0 0 W 78 | X I2CADR1 3 -800 200 200 R 40 40 0 0 I 79 | X VDDD 30 800 1100 200 L 40 40 0 0 W 80 | X NFC_CLK_XTAL1 36 -800 -400 200 R 40 40 0 0 I 81 | X NFC_CLK_XTAL2 37 -800 -500 200 R 40 40 0 0 O 82 | X VSS(PAD) 4 800 -1000 200 L 40 40 0 0 W 83 | X CLK_REQ 40 800 -200 200 L 40 40 0 0 O 84 | X VSS 41 800 -1100 200 L 40 40 0 0 W 85 | X I2CSDA 5 -800 0 200 R 40 40 0 0 B 86 | X VDD(PAD) 6 800 200 200 L 40 40 0 0 W 87 | X I2CSCL 7 -800 100 200 R 40 40 0 0 I C 88 | X IRQ 8 800 -300 200 L 40 40 0 0 O 89 | X VSS 9 800 -1100 200 L 40 40 0 0 W 90 | ENDDRAW 91 | ENDDEF 92 | # 93 | #End Library 94 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/KSC941JLFS.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "KSC941JLFS" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 6408FA1E) 4 | (attr smd) 5 | (fp_text reference "REF**" (at 0.1 -4 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp 7a049f60-81da-4f43-97b9-4697f544c134) 8 | ) 9 | (fp_text value "KSC941JLFS" (at 0 3.9 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 9a064237-81c6-4294-a4e7-2aadc7d202ff) 12 | ) 13 | (fp_text user "${REFERENCE}" (at 0 5.5 unlocked) (layer "F.Fab") 14 | (effects (font (size 1 1) (thickness 0.15))) 15 | (tstamp 6aa0c7aa-154b-4cf1-b26b-41c107eb038a) 16 | ) 17 | (fp_line (start 3.1 0) (end 3.1 -3.1) (layer "F.SilkS") (width 0.12) (tstamp 5d4ceaf8-c3e3-49cd-90ca-75e1dd74cbea)) 18 | (fp_line (start 3.1 -3.1) (end -3.1 -3.1) (layer "F.SilkS") (width 0.12) (tstamp 87255772-8253-41d2-b95e-270e99dbf334)) 19 | (fp_line (start -3.1 3.1) (end 3.1 3.1) (layer "F.SilkS") (width 0.12) (tstamp a79ef794-7d94-40c2-ad8b-60b70bdcbce3)) 20 | (fp_line (start 3.1 3.1) (end 3.1 0) (layer "F.SilkS") (width 0.12) (tstamp a8cbc6b7-8f51-4071-b6f7-171eb2878c76)) 21 | (fp_line (start -3.1 -3.1) (end -3.1 3.1) (layer "F.SilkS") (width 0.12) (tstamp dfa5cda6-847a-4227-96f2-e496a862f11b)) 22 | (fp_line (start -4.3 -2.8) (end -4.3 2.8) (layer "F.CrtYd") (width 0.05) (tstamp 713acfd3-907d-4660-92a6-dbfbf2bfc248)) 23 | (fp_line (start 4.3 2.8) (end 4.3 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp 74b5b296-9fe7-44d8-86e8-7daabc6561b1)) 24 | (fp_line (start -4 3.1) (end 4 3.1) (layer "F.CrtYd") (width 0.05) (tstamp af3784e5-2bb2-4c8b-adde-28bcbc44ecfa)) 25 | (fp_line (start 4 -3.1) (end -4 -3.1) (layer "F.CrtYd") (width 0.05) (tstamp c58134a2-6106-4494-bd5a-68fa02f73983)) 26 | (fp_arc (start -4 3.1) (mid -4.212132 3.012132) (end -4.3 2.8) (layer "F.CrtYd") (width 0.05) (tstamp 39816a05-674b-4332-a8af-39464149b188)) 27 | (fp_arc (start -4.3 -2.8) (mid -4.212132 -3.012132) (end -4 -3.1) (layer "F.CrtYd") (width 0.05) (tstamp 8fc5039f-fa7a-484e-9ad4-f3af3342baeb)) 28 | (fp_arc (start 4.3 2.8) (mid 4.212132 3.012132) (end 4 3.1) (layer "F.CrtYd") (width 0.05) (tstamp 9fc7ac44-cb8c-4b0f-a19b-9c4d4ecd6ffd)) 29 | (fp_arc (start 4 -3.1) (mid 4.212132 -3.012132) (end 4.3 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp e35c56f9-4713-4571-acdb-6ae2f2073fad)) 30 | (pad "1" smd roundrect (at 2.9 -2) (size 2.8 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 70240b84-210b-475c-af2e-726312429f46)) 31 | (pad "1" smd roundrect (at -2.9 -2) (size 2.8 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp dcb61648-645f-4571-abae-fc007ea2e009)) 32 | (pad "2" smd roundrect (at -2.9 2) (size 2.8 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 09a932de-1c91-4c68-b7e2-a313cdf52b1c)) 33 | (pad "2" smd roundrect (at 2.9 2) (size 2.8 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b1d75004-c17b-479e-bc25-e66a388f9e06)) 34 | ) 35 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/Micro_interruptor_SPDT.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Micro_interruptor_SPDT (layer F.Cu) (tedit 5DA61CD3) 2 | (fp_text reference SW1 (at 1.25 -1.85) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value SW_Push_SPDT (at 2.25 9.2) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -0.2 0.5) (end 2.7 0.5) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 2.7 0.5) (end 2.7 7.25) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start 2.7 7.25) (end -0.15 7.25) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -0.15 7.25) (end -0.2 0.5) (layer F.SilkS) (width 0.15)) 12 | (pad "" np_thru_hole circle (at 1.35 5.25) (size 0.9 0.9) (drill 0.7) (layers *.Cu *.Mask)) 13 | (pad "" np_thru_hole circle (at 1.4 2.25) (size 0.9 0.9) (drill 0.7) (layers *.Cu *.Mask)) 14 | (pad NC smd rect (at 1.3 7.85) (size 2.8 1) (layers F.Cu F.Paste F.Mask)) 15 | (pad 3 smd rect (at 3.2 4.5 90) (size 0.7 1) (layers F.Cu F.Paste F.Mask)) 16 | (pad 2 smd rect (at 3.2 6 90) (size 0.7 1) (layers F.Cu F.Paste F.Mask)) 17 | (pad 1 smd rect (at 3.2 1.5 90) (size 0.7 1) (layers F.Cu F.Paste F.Mask)) 18 | (pad NC smd rect (at 1.3 -0.1) (size 2.8 1) (layers F.Cu F.Paste F.Mask)) 19 | ) 20 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/NFC-antenna30.4x30.4mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module NFC-antenna30.4x30.4mm (layer F.Cu) (tedit 5E7CE981) 2 | (descr "4 turns, 0.4 cu width, 0.35 spacing, 1494 nH") 3 | (attr smd) 4 | (fp_text reference L3 (at -18 -21.5) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value L (at 0.5 -14.25) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start 12.75 -1) (end 12.75 -12.75) (layer F.Cu) (width 0.4)) 11 | (fp_line (start -12.75 -12.75) (end 12.75 -12.75) (layer F.Cu) (width 0.4)) 12 | (fp_line (start -12.75 -12.75) (end -12.75 12.75) (layer F.Cu) (width 0.4)) 13 | (fp_line (start 12.75 12.75) (end -12.75 12.75) (layer F.Cu) (width 0.4)) 14 | (fp_line (start -13.5 1) (end -14.25 -1) (layer F.Cu) (width 0.4)) 15 | (fp_line (start -13.5 1) (end -13.5 13.5) (layer F.Cu) (width 0.4)) 16 | (fp_line (start 13.5 13.5) (end -13.5 13.5) (layer F.Cu) (width 0.4)) 17 | (fp_line (start 13.5 1) (end 12.75 -1) (layer B.Cu) (width 0.4)) 18 | (fp_line (start 13.5 13.5) (end 13.5 1) (layer F.Cu) (width 0.4)) 19 | (fp_line (start 12.75 1) (end 13.5 -1) (layer F.Cu) (width 0.4)) 20 | (fp_line (start 14.25 -14.25) (end 14.25 -1) (layer F.Cu) (width 0.4)) 21 | (fp_line (start -14.25 -14.25) (end 14.25 -14.25) (layer F.Cu) (width 0.4)) 22 | (fp_line (start -14.25 -14.25) (end -14.25 -1) (layer F.Cu) (width 0.4)) 23 | (fp_line (start 12.75 12.75) (end 12.75 1) (layer F.Cu) (width 0.4)) 24 | (fp_line (start 13.5 -13.5) (end 13.5 -1) (layer F.Cu) (width 0.4)) 25 | (fp_line (start 13.5 -13.5) (end -13.5 -13.5) (layer F.Cu) (width 0.4)) 26 | (fp_line (start -13.5 -1) (end -14.25 1) (layer B.Cu) (width 0.4)) 27 | (fp_line (start -13.5 -1) (end -13.5 -13.5) (layer F.Cu) (width 0.4)) 28 | (fp_line (start -14.25 1) (end -14.25 14.25) (layer F.Cu) (width 0.4)) 29 | (fp_line (start -15 3) (end -15 15) (layer F.Cu) (width 0.4)) 30 | (fp_line (start 14.25 14.25) (end -14.25 14.25) (layer F.Cu) (width 0.4)) 31 | (fp_line (start 15 1) (end 14.25 -1) (layer B.Cu) (width 0.4)) 32 | (fp_line (start 14.25 1) (end 15 -1) (layer F.Cu) (width 0.4)) 33 | (fp_line (start 15 -1) (end 15 -15) (layer F.Cu) (width 0.4)) 34 | (fp_line (start 15 15) (end 15 1) (layer F.Cu) (width 0.4)) 35 | (fp_line (start 15 15) (end -15 15) (layer F.Cu) (width 0.4)) 36 | (fp_line (start 14.25 14.25) (end 14.25 1) (layer F.Cu) (width 0.4)) 37 | (fp_line (start 15 -15) (end -15 -15) (layer F.Cu) (width 0.4)) 38 | (fp_line (start -15 -3) (end -15 -15) (layer F.Cu) (width 0.4)) 39 | (fp_line (start -15.5 3) (end -15 3) (layer F.Cu) (width 0.4)) 40 | (fp_line (start -15.5 -3) (end -15 -3) (layer F.Cu) (width 0.4)) 41 | (fp_line (start -20 20) (end 20 20) (layer F.CrtYd) (width 0.12)) 42 | (pad 2 smd rect (at -15.5 3) (size 0.4 0.4) (layers F.Cu F.Paste F.Mask)) 43 | (pad 1 smd rect (at -15.5 -3) (size 0.4 0.4) (layers F.Cu F.Paste F.Mask)) 44 | (pad "" thru_hole circle (at 12.75 -1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 45 | (pad "" thru_hole circle (at 13.5 1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 46 | (pad "" thru_hole circle (at -13.5 -1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 47 | (pad "" thru_hole circle (at -14.25 1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 48 | (pad "" thru_hole circle (at 14.25 -1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 49 | (pad "" thru_hole circle (at 15 1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 50 | ) 51 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/NFC-antenna40x40mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module NFC-antenna40x40mm (layer F.Cu) (tedit 5E7B02E9) 2 | (descr "4 turns, 0.4 cu width, 0.35 spacing, 1494 nH") 3 | (attr smd) 4 | (fp_text reference REF** (at -18 -21.5) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value NFC-antenna4x4mm (at 0.5 -14.25) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start 17.75 -1) (end 17.75 -17.75) (layer F.Cu) (width 0.4)) 11 | (fp_line (start -17.75 -17.75) (end 17.75 -17.75) (layer F.Cu) (width 0.4)) 12 | (fp_line (start -17.75 -17.75) (end -17.75 17.75) (layer F.Cu) (width 0.4)) 13 | (fp_line (start 17.75 17.75) (end -17.75 17.75) (layer F.Cu) (width 0.4)) 14 | (fp_line (start -18.5 1) (end -19.25 -1) (layer F.Cu) (width 0.4)) 15 | (fp_line (start -18.5 1) (end -18.5 18.5) (layer F.Cu) (width 0.4)) 16 | (fp_line (start 18.5 18.5) (end -18.5 18.5) (layer F.Cu) (width 0.4)) 17 | (fp_line (start 18.5 1) (end 17.75 -1) (layer B.Cu) (width 0.4)) 18 | (fp_line (start 18.5 18.5) (end 18.5 1) (layer F.Cu) (width 0.4)) 19 | (fp_line (start 17.75 1) (end 18.5 -1) (layer F.Cu) (width 0.4)) 20 | (fp_line (start 19.25 -19.25) (end 19.25 -1) (layer F.Cu) (width 0.4)) 21 | (fp_line (start -19.25 -19.25) (end 19.25 -19.25) (layer F.Cu) (width 0.4)) 22 | (fp_line (start -19.25 -19.25) (end -19.25 -1) (layer F.Cu) (width 0.4)) 23 | (fp_line (start 17.75 17.75) (end 17.75 1) (layer F.Cu) (width 0.4)) 24 | (fp_line (start 18.5 -18.5) (end 18.5 -1) (layer F.Cu) (width 0.4)) 25 | (fp_line (start 18.25 -18.5) (end -18.5 -18.5) (layer F.Cu) (width 0.4)) 26 | (fp_line (start -18.5 -1) (end -19.25 1) (layer B.Cu) (width 0.4)) 27 | (fp_line (start -18.5 -1) (end -18.5 -18.5) (layer F.Cu) (width 0.4)) 28 | (fp_line (start -19.25 1) (end -19.25 19.25) (layer F.Cu) (width 0.4)) 29 | (fp_line (start -20 3) (end -20 20) (layer F.Cu) (width 0.4)) 30 | (fp_line (start 19.25 19.25) (end -19.25 19.25) (layer F.Cu) (width 0.4)) 31 | (fp_line (start 20 1) (end 19.25 -1) (layer B.Cu) (width 0.4)) 32 | (fp_line (start 19.25 1) (end 20 -1) (layer F.Cu) (width 0.4)) 33 | (fp_line (start 20 -1) (end 20 -20) (layer F.Cu) (width 0.4)) 34 | (fp_line (start 20 20) (end 20 1) (layer F.Cu) (width 0.4)) 35 | (fp_line (start 20 20) (end -20 20) (layer F.Cu) (width 0.4)) 36 | (fp_line (start 19.25 19.25) (end 19.25 1) (layer F.Cu) (width 0.4)) 37 | (fp_line (start 20 -20) (end -20 -20) (layer F.Cu) (width 0.4)) 38 | (fp_line (start -20 -3) (end -20 -20) (layer F.Cu) (width 0.4)) 39 | (fp_line (start -20.5 3) (end -20 3) (layer F.Cu) (width 0.4)) 40 | (fp_line (start -20.5 -3) (end -20 -3) (layer F.Cu) (width 0.4)) 41 | (fp_line (start 20 20) (end 20 -20) (layer F.CrtYd) (width 0.12)) 42 | (fp_line (start -20 20) (end -20 -20) (layer F.CrtYd) (width 0.12)) 43 | (fp_line (start -20 20) (end 20 20) (layer F.CrtYd) (width 0.12)) 44 | (fp_line (start -20 -20) (end 20 -20) (layer F.CrtYd) (width 0.12)) 45 | (pad 2 smd rect (at -20.55 3) (size 0.4 0.4) (layers F.Cu F.Paste F.Mask)) 46 | (pad 1 smd rect (at -20.5 -3) (size 0.4 0.4) (layers F.Cu F.Paste F.Mask)) 47 | (pad "" thru_hole circle (at 17.75 -1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 48 | (pad "" thru_hole circle (at 18.5 1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 49 | (pad "" thru_hole circle (at -18.5 -1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 50 | (pad "" thru_hole circle (at -19.25 1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 51 | (pad "" thru_hole circle (at 19.25 -1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 52 | (pad "" thru_hole circle (at 20 1) (size 0.4 0.4) (drill 0.2) (layers *.Cu *.Mask)) 53 | ) 54 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/NFCAntennaTest.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 20.002500 20.002500) (xy -19.991917 20.002500) (xy -19.991917 -19.251083) (xy 19.251089 -19.251083) (xy 19.248440 -0.002646) (xy 19.245792 19.245792) (xy -0.002646 19.248440) (xy -19.251083 19.251089) 10 | (xy -19.251083 -18.499667) (xy 18.510256 -18.499667) (xy 18.507607 0.002646) (xy 18.504958 18.504958) (xy 0.002646 18.507607) (xy -18.499667 18.510256) (xy -18.499667 -17.748250) (xy 17.758839 -17.748250) 11 | (xy 17.756190 0.002646) (xy 17.753542 17.753542) (xy 0.002646 17.756190) (xy -17.748250 17.758839) (xy -17.748250 -16.996833) (xy -17.346083 -16.996833) (xy -17.346083 17.356667) (xy 17.356667 17.356667) 12 | (xy 17.356667 -17.356667) (xy -18.097500 -17.356667) (xy -18.097500 18.108083) (xy 18.108083 18.108083) (xy 18.108083 -18.108083) (xy -18.848917 -18.108083) (xy -18.848917 18.848917) (xy 18.848917 18.848917) 13 | (xy 18.848917 -18.859500) (xy -19.589750 -18.859500) (xy -19.589750 19.600333) (xy 19.600333 19.600333) (xy 19.600333 -19.600333) (xy -19.991917 -19.600333) (xy -19.991917 -19.991917) (xy 20.002500 -19.991917) 14 | (xy 20.002500 20.002500) )(layer F.Mask) (width 0.010000) 15 | ) 16 | ) 17 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/NFC_ANTENNA2.kicad_mod: -------------------------------------------------------------------------------- 1 | (module NFC_ANTENNA2 (layer F.Cu) (tedit 537A0125) 2 | (fp_text reference ANT1 (at 9.3 1.9) (layer F.SilkS) 3 | (effects (font (size 0.3 0.3) (thickness 0.075))) 4 | ) 5 | (fp_text value ANT_NFC2 (at 11.75 -0.5) (layer F.SilkS) 6 | (effects (font (size 0.3 0.3) (thickness 0.075))) 7 | ) 8 | (fp_line (start 56.4 -23) (end 57.9 -21.5) (layer F.Cu) (width 0.36)) 9 | (fp_line (start 1.5 -23) (end 0 -21.5) (layer F.Cu) (width 0.36)) 10 | (fp_line (start 57.89 21.5) (end 56.39 23) (layer F.Cu) (width 0.36)) 11 | (fp_line (start 0 21.49) (end 1.5 23) (layer F.Cu) (width 0.36)) 12 | (fp_line (start 2.52 -21.98) (end 1.02 -20.47) (layer F.Cu) (width 0.36)) 13 | (fp_line (start 3.54 -20.96) (end 2.04 -19.46) (layer F.Cu) (width 0.36)) 14 | (fp_line (start 55.38 -21.98) (end 56.88 -20.48) (layer F.Cu) (width 0.36)) 15 | (fp_line (start 54.36 -20.96) (end 55.86 -19.46) (layer F.Cu) (width 0.36)) 16 | (fp_line (start 56.88 20.48) (end 55.38 21.98) (layer F.Cu) (width 0.36)) 17 | (fp_line (start 55.86 19.46) (end 54.36 20.96) (layer F.Cu) (width 0.36)) 18 | (fp_line (start 1.02 20.49) (end 2.52 21.98) (layer F.Cu) (width 0.36)) 19 | (fp_line (start 2.04 19.46) (end 3.54 20.96) (layer F.Cu) (width 0.36)) 20 | (fp_line (start 54.36 -20.96) (end 3.54 -20.96) (layer F.Cu) (width 0.36)) 21 | (fp_line (start 55.38 -21.98) (end 2.52 -21.98) (layer F.Cu) (width 0.36)) 22 | (fp_line (start 1.5 -23) (end 56.4 -23) (layer F.Cu) (width 0.36)) 23 | (fp_line (start 56.39 23) (end 1.5 23) (layer F.Cu) (width 0.36)) 24 | (fp_line (start 2.52 21.98) (end 55.38 21.98) (layer F.Cu) (width 0.36)) 25 | (fp_line (start 54.36 20.96) (end 3.54 20.96) (layer F.Cu) (width 0.36)) 26 | (fp_line (start 53.34 -19.93) (end 54.84 -18.43) (layer F.Cu) (width 0.36)) 27 | (fp_line (start 54.84 18.44) (end 53.34 19.94) (layer F.Cu) (width 0.36)) 28 | (fp_line (start 3.06 18.44) (end 4.56 19.94) (layer F.Cu) (width 0.36)) 29 | (fp_line (start 4.55 -19.94) (end 3.05 -18.44) (layer F.Cu) (width 0.36)) 30 | (fp_line (start 53.34 -19.93) (end 4.55 -19.94) (layer F.Cu) (width 0.36)) 31 | (fp_line (start 53.34 19.94) (end 4.56 19.94) (layer F.Cu) (width 0.36)) 32 | (fp_line (start 1.02 -0.51) (end 2.04 0.51) (layer F.Cu) (width 0.36)) 33 | (fp_line (start 2.04 19.46) (end 2.04 0.51) (layer F.Cu) (width 0.36)) 34 | (fp_line (start 1.02 -0.51) (end 1.02 -20.47) (layer F.Cu) (width 0.36)) 35 | (fp_line (start 0 6) (end -0.5 5.5) (layer F.Cu) (width 0.36)) 36 | (fp_line (start 0 21.49) (end 0 6) (layer F.Cu) (width 0.36)) 37 | (fp_line (start 0 -6) (end -0.52 -5.49) (layer F.Cu) (width 0.36)) 38 | (fp_line (start 0 -21.5) (end 0 -6) (layer F.Cu) (width 0.36)) 39 | (fp_line (start 3.06 18.44) (end 3.05 -18.44) (layer F.Cu) (width 0.36)) 40 | (fp_line (start 1.02 20.49) (end 1.02 1.02) (layer F.Cu) (width 0.36)) 41 | (fp_line (start 2.04 -1.02) (end 2.04 -19.46) (layer F.Cu) (width 0.36)) 42 | (fp_line (start 1.02 1.02) (end 2.04 -1.02) (layer B.Cu) (width 0.36)) 43 | (fp_line (start 54.84 1.02) (end 55.86 -1.02) (layer B.Cu) (width 0.36)) 44 | (fp_line (start 56.88 1.02) (end 57.9 -1.02) (layer B.Cu) (width 0.36)) 45 | (fp_line (start 54.84 18.44) (end 54.84 1.02) (layer F.Cu) (width 0.36)) 46 | (fp_line (start 55.86 -1.02) (end 55.86 -19.46) (layer F.Cu) (width 0.36)) 47 | (fp_line (start 57.9 -1.02) (end 57.9 -21.5) (layer F.Cu) (width 0.36)) 48 | (fp_line (start 56.88 20.48) (end 56.88 1.02) (layer F.Cu) (width 0.36)) 49 | (fp_line (start 55.86 0.61) (end 54.84 -0.61) (layer F.Cu) (width 0.36)) 50 | (fp_line (start 55.86 19.46) (end 55.86 0.61) (layer F.Cu) (width 0.36)) 51 | (fp_line (start 54.84 -0.61) (end 54.84 -18.43) (layer F.Cu) (width 0.36)) 52 | (fp_line (start 56.88 -0.61) (end 56.88 -20.48) (layer F.Cu) (width 0.36)) 53 | (fp_line (start 57.89 0.61) (end 56.88 -0.61) (layer F.Cu) (width 0.36)) 54 | (fp_line (start 57.89 21.5) (end 57.89 0.61) (layer F.Cu) (width 0.36)) 55 | (pad "" thru_hole circle (at 57.9 -1.02) (size 0.7 0.7) (drill 0.3) (layers *.Cu *.Mask F.SilkS)) 56 | (pad "" thru_hole circle (at 56.88 1.02) (size 0.7 0.7) (drill 0.3) (layers *.Cu *.Mask F.SilkS)) 57 | (pad "" thru_hole circle (at 55.86 -1.02) (size 0.7 0.7) (drill 0.3) (layers *.Cu *.Mask F.SilkS)) 58 | (pad "" thru_hole circle (at 54.84 1.02) (size 0.7 0.7) (drill 0.3) (layers *.Cu *.Mask F.SilkS)) 59 | (pad "" thru_hole circle (at 2.04 -1.02) (size 0.7 0.7) (drill 0.3) (layers *.Cu *.Mask F.SilkS)) 60 | (pad "" thru_hole circle (at 1.02 1.02) (size 0.7 0.7) (drill 0.3) (layers *.Cu *.Mask F.SilkS)) 61 | (pad 3 smd rect (at -0.5 -5.5) (size 1 1) (layers F.Cu F.Paste F.Mask)) 62 | (pad 2 thru_hole circle (at 3.05 0) (size 1 1) (drill 0.5) (layers *.Cu *.Mask F.SilkS)) 63 | (pad 1 smd rect (at -0.5 5.5) (size 1 1) (layers F.Cu F.Paste F.Mask)) 64 | ) 65 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/PSON50P200X300X50-9N.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PSON50P200X300X50-9N (layer F.Cu) (tedit 5FACB1EC) 2 | (fp_text reference REF** (at 0.04 -2.008) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value PSON50P200X300X50-9N (at 7.66 2.008) (layer F.Fab) 6 | (effects (font (size 0.8 0.8) (thickness 0.015))) 7 | ) 8 | (fp_poly (pts (xy -0.06 -0.51) (xy 0.06 -0.51) (xy 0.06 0.51) (xy -0.06 0.51)) (layer F.Paste) (width 0.01)) 9 | (fp_circle (center -2 -0.75) (end -1.9 -0.75) (layer F.SilkS) (width 0.2)) 10 | (fp_circle (center -2 -0.75) (end -1.9 -0.75) (layer F.Fab) (width 0.2)) 11 | (fp_line (start -1.5 -1) (end 1.5 -1) (layer F.Fab) (width 0.127)) 12 | (fp_line (start -1.5 1) (end 1.5 1) (layer F.Fab) (width 0.127)) 13 | (fp_line (start -1.5 -1.239) (end 1.5 -1.239) (layer F.SilkS) (width 0.127)) 14 | (fp_line (start -1.5 1.239) (end 1.5 1.239) (layer F.SilkS) (width 0.127)) 15 | (fp_line (start -1.5 -1) (end -1.5 1) (layer F.Fab) (width 0.127)) 16 | (fp_line (start 1.5 -1) (end 1.5 1) (layer F.Fab) (width 0.127)) 17 | (fp_line (start -1.75 -1.25) (end 1.75 -1.25) (layer F.CrtYd) (width 0.05)) 18 | (fp_line (start -1.75 1.25) (end 1.75 1.25) (layer F.CrtYd) (width 0.05)) 19 | (fp_line (start -1.75 -1.25) (end -1.75 1.25) (layer F.CrtYd) (width 0.05)) 20 | (fp_line (start 1.75 -1.25) (end 1.75 1.25) (layer F.CrtYd) (width 0.05)) 21 | (pad 1 smd rect (at -1.22 -0.75) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 22 | (pad 2 smd rect (at -1.22 -0.25) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 23 | (pad 3 smd rect (at -1.22 0.25) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 24 | (pad 4 smd rect (at -1.22 0.75) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 25 | (pad 5 smd rect (at 1.22 0.75) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 26 | (pad 6 smd rect (at 1.22 0.25) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 27 | (pad 7 smd rect (at 1.22 -0.25) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 28 | (pad 8 smd rect (at 1.22 -0.75) (size 0.49 0.35) (layers F.Cu F.Paste F.Mask)) 29 | (pad 9 smd rect (at 0 0) (size 0.2 1.6) (layers F.Cu F.Mask)) 30 | ) 31 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/RP2040-QFN-56.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "RP2040-QFN-56" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 5EF32B43) 4 | (descr "QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py") 5 | (tags "QFN DFN_QFN") 6 | (attr smd) 7 | (fp_text reference "REF**" (at 0 -4.82) (layer "F.SilkS") 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | (tstamp 72596630-6f62-446b-a788-e57836f8a3c1) 10 | ) 11 | (fp_text value "Pico2040-QFN-56" (at 0 4.82) (layer "F.Fab") 12 | (effects (font (size 1 1) (thickness 0.15))) 13 | (tstamp dfcdf09d-9f20-4402-b580-09edd237e4fb) 14 | ) 15 | (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") 16 | (effects (font (size 1 1) (thickness 0.15))) 17 | (tstamp bac0882a-cd95-40e5-bcae-36dd00c1e400) 18 | ) 19 | (fp_line (start -2.96 -3.61) (end -3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp 3bb6370c-713d-4d7f-8232-809c9ec621ba)) 20 | (fp_line (start -2.96 3.61) (end -3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp 5880b9b0-aa32-4505-8669-deb95429be37)) 21 | (fp_line (start -3.61 3.61) (end -3.61 2.96) (layer "F.SilkS") (width 0.12) (tstamp 5b17d47a-a4a2-4ddf-966a-e6b5821094ec)) 22 | (fp_line (start 3.61 -3.61) (end 3.61 -2.96) (layer "F.SilkS") (width 0.12) (tstamp 8eb5e770-d904-422f-814b-21543d34976a)) 23 | (fp_line (start 3.61 3.61) (end 3.61 2.96) (layer "F.SilkS") (width 0.12) (tstamp a4016004-dc80-4dea-8e6b-d39f67a11e91)) 24 | (fp_line (start 2.96 -3.61) (end 3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp c8fb0e8c-a702-4abf-8afe-bedb64abe0e1)) 25 | (fp_line (start 2.96 3.61) (end 3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp facfc131-66c7-4b5b-b59f-7d81e0c94438)) 26 | (fp_line (start 4.12 -4.12) (end -4.12 -4.12) (layer "F.CrtYd") (width 0.05) (tstamp 34123646-538f-4d29-99e3-ef929983a259)) 27 | (fp_line (start 4.12 4.12) (end 4.12 -4.12) (layer "F.CrtYd") (width 0.05) (tstamp 792df31f-d7c8-4ab7-9004-848451dfcc4f)) 28 | (fp_line (start -4.12 4.12) (end 4.12 4.12) (layer "F.CrtYd") (width 0.05) (tstamp a423b214-b454-4185-84f8-c95ee23e5bb6)) 29 | (fp_line (start -4.12 -4.12) (end -4.12 4.12) (layer "F.CrtYd") (width 0.05) (tstamp b57691ac-45e2-4fef-b67e-be0698b53c0a)) 30 | (fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 148d4173-b063-4b10-8a8d-efdde1f30322)) 31 | (fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 46a7dba6-e84c-4e04-a72e-86e4c6e4e198)) 32 | (fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 69814d9b-0367-4de8-9718-43b37031d240)) 33 | (fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 69b9c43b-f07d-440f-a8c0-3e74d8fe8255)) 34 | (fp_line (start 3.5 3.5) (end -3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp abdf1fc0-a5f4-4a26-adc8-ba7216defb10)) 35 | (pad "" smd roundrect (at 0.6375 0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp 480d5422-6d33-4319-a5c2-9ce1cd04fa90)) 36 | (pad "" smd roundrect (at -0.6375 0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp 8d3d3e35-82e0-40ba-907a-a8ab9693853e)) 37 | (pad "" smd roundrect (at 0.6375 -0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp d08f9431-ef8a-42b7-a850-bcd8bb770f1b)) 38 | (pad "" smd roundrect (at -0.6375 -0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp ecff6837-a08b-483d-9647-9310dfc674e3)) 39 | (pad "1" smd roundrect (at -3.4375 -2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp e82e6c3a-dba3-44b6-823e-2bd844f08cca)) 40 | (pad "2" smd roundrect (at -3.4375 -2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp cc490913-daab-4fa1-87b9-975705ee9dbd)) 41 | (pad "3" smd roundrect (at -3.4375 -1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 58f281db-090d-4a92-8a73-05e2a97a7ee9)) 42 | (pad "4" smd roundrect (at -3.4375 -1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp d6a8f316-1392-4ab3-858a-2bdd1e8ab61d)) 43 | (pad "5" smd roundrect (at -3.4375 -1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 70e94f88-657e-428d-84a0-9ae84ea57cd7)) 44 | (pad "6" smd roundrect (at -3.4375 -0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 44ec5d8a-0a8a-4230-b003-6ed9c113dcbb)) 45 | (pad "7" smd roundrect (at -3.4375 -0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 1875410c-e4b4-4ec3-b634-5e1a0d17ab0f)) 46 | (pad "8" smd roundrect (at -3.4375 0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2db578cd-b125-49d3-b68b-3360b8f58d41)) 47 | (pad "9" smd roundrect (at -3.4375 0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp e5c9e5a1-eb3c-47d6-be9a-b6b058a3d5d9)) 48 | (pad "10" smd roundrect (at -3.4375 1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp fa2253b1-674a-48db-8f5b-f4c85dcb27ae)) 49 | (pad "11" smd roundrect (at -3.4375 1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 5278fb5e-f15e-42fe-84df-a59fee8119f1)) 50 | (pad "12" smd roundrect (at -3.4375 1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp cb232dae-017e-46a0-81d3-8ae4432055dd)) 51 | (pad "13" smd roundrect (at -3.4375 2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp df8f1fc7-0af7-4ef1-91a4-ae074793bf79)) 52 | (pad "14" smd roundrect (at -3.4375 2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp fcf72183-7571-4ba1-a298-770fa333efdf)) 53 | (pad "15" smd roundrect (at -2.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 973720a6-f461-4d46-b2fe-59915df69d25)) 54 | (pad "16" smd roundrect (at -2.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp a2da6c4b-cf98-4d3d-b54c-e05e54dfd2b6)) 55 | (pad "17" smd roundrect (at -1.8 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 872056a8-3317-408d-800b-762b71027ed5)) 56 | (pad "18" smd roundrect (at -1.4 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp dc4ad6d5-b7e2-4098-b974-50466b3890e2)) 57 | (pad "19" smd roundrect (at -1 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 4a7a8704-b751-4f8c-aedf-2558a0174a72)) 58 | (pad "20" smd roundrect (at -0.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3de5b137-b7ed-4a67-a65d-5332350a142e)) 59 | (pad "21" smd roundrect (at -0.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3be93bf9-8c44-4bd5-ab0f-f48691dd7c5d)) 60 | (pad "22" smd roundrect (at 0.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp ea0658cd-816e-408e-924b-067dc4ea75f8)) 61 | (pad "23" smd roundrect (at 0.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 1c67d947-286e-4eeb-ad61-68de893b3f2c)) 62 | (pad "24" smd roundrect (at 1 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3962f024-df76-4ce5-a845-a5bfd0cc118f)) 63 | (pad "25" smd roundrect (at 1.4 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp cd456294-dca4-4c26-9abc-c7a07f86c1c8)) 64 | (pad "26" smd roundrect (at 1.8 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b15cb383-7ebe-47e4-8de4-90e4bb592ca1)) 65 | (pad "27" smd roundrect (at 2.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 4fc9e638-a9e7-4d3f-b340-780df412591d)) 66 | (pad "28" smd roundrect (at 2.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 447c289f-e3ea-4183-b81d-b7026faccfd7)) 67 | (pad "29" smd roundrect (at 3.4375 2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 7f8398d1-1fcb-4b17-b71c-c5df98433848)) 68 | (pad "30" smd roundrect (at 3.4375 2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp cb625889-a39e-48a1-b5ca-64b654415724)) 69 | (pad "31" smd roundrect (at 3.4375 1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2a3045fd-49b2-4e17-94bf-b5864659b054)) 70 | (pad "32" smd roundrect (at 3.4375 1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 0f8c7f8e-c569-41d5-a9c5-be2602986fec)) 71 | (pad "33" smd roundrect (at 3.4375 1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp e6c57be4-076b-4791-b5f7-950dec1eba7d)) 72 | (pad "34" smd roundrect (at 3.4375 0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 422c943d-0851-47e8-8fa0-a7c617f12578)) 73 | (pad "35" smd roundrect (at 3.4375 0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp d92a0282-1577-4ce4-be7e-0b4d890f47ad)) 74 | (pad "36" smd roundrect (at 3.4375 -0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp deb67a9b-326e-4e7c-9ffe-380d8b743b4a)) 75 | (pad "37" smd roundrect (at 3.4375 -0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp dc2f95e5-e18b-4da3-b935-6bac0924cb34)) 76 | (pad "38" smd roundrect (at 3.4375 -1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 102c4f15-f7f0-47b3-b463-90324a621426)) 77 | (pad "39" smd roundrect (at 3.4375 -1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 9c614a92-4db0-4682-b200-e8121deaa926)) 78 | (pad "40" smd roundrect (at 3.4375 -1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp ce1871bd-0dbe-421e-af45-ef8b1716fbf2)) 79 | (pad "41" smd roundrect (at 3.4375 -2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 20b6f547-8f23-4ca0-8198-b15b71fba76d)) 80 | (pad "42" smd roundrect (at 3.4375 -2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 95576a76-91bb-4db4-bcad-45ffa1fb7580)) 81 | (pad "43" smd roundrect (at 2.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 0bc4a849-5f93-40a7-8f00-efd98ea94086)) 82 | (pad "44" smd roundrect (at 2.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 253438e1-b2d5-45c8-bcfc-742c8344ecea)) 83 | (pad "45" smd roundrect (at 1.8 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp fbc71af7-de54-4238-9761-e2dd07bc84ed)) 84 | (pad "46" smd roundrect (at 1.4 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 188bd81e-55cf-4eb8-ac51-32c0165c3b7f)) 85 | (pad "47" smd roundrect (at 1 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 0548b5b4-cb6a-4383-985b-2777ce991c3e)) 86 | (pad "48" smd roundrect (at 0.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 4110e71c-ac60-4e49-a67d-42ff60f3a0ba)) 87 | (pad "49" smd roundrect (at 0.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 996c5414-4d36-42a5-a5a3-5c685d76f56d)) 88 | (pad "50" smd roundrect (at -0.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 18648368-8315-41f6-b287-55706b48f79e)) 89 | (pad "51" smd roundrect (at -0.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2d5b3e10-9b65-4abf-803e-969a546fc8e3)) 90 | (pad "52" smd roundrect (at -1 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3969f1a4-cee5-45d1-af73-48102fab1b79)) 91 | (pad "53" smd roundrect (at -1.4 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 13ca6f98-495b-4848-a1b9-619bdbf2e008)) 92 | (pad "54" smd roundrect (at -1.8 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 207f3729-b16f-4bed-8e25-6323ca6af59d)) 93 | (pad "55" smd roundrect (at -2.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp c7f16784-da95-4ab7-905d-9889694975ee)) 94 | (pad "56" smd roundrect (at -2.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp de9814ea-c668-40c7-a581-41a00d5ad413)) 95 | (pad "57" thru_hole circle (at 1.275 -1.275) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp 2b02e529-0dd1-4c56-92a3-7eb22d2ee260)) 96 | (pad "57" thru_hole circle (at 1.275 0) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp 3a6e1b00-aa08-416c-85dc-bf006b0a4a78)) 97 | (pad "57" smd roundrect (at 0 0) (size 3.2 3.2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.045) (tstamp 76adfc93-1bf2-41b7-b4bf-eb835ea8821f)) 98 | (pad "57" thru_hole circle (at -1.275 -1.275) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp 9858a585-1ecc-4893-a1c6-bacba18521ec)) 99 | (pad "57" thru_hole circle (at 0 -1.275) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp ae5c31ab-a505-4959-ae0e-cec81fcbf815)) 100 | (pad "57" thru_hole circle (at 1.275 1.275) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp b825db6d-eaf6-475d-bf93-964d29afb19e)) 101 | (pad "57" thru_hole circle (at -1.275 1.275) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp da1874bd-bc34-4d30-85e0-173930a32a31)) 102 | (pad "57" thru_hole circle (at -1.275 0) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp deba7d89-f9a2-4354-82a6-0d3192f950f8)) 103 | (pad "57" thru_hole circle (at 0 0) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp ed93faec-dea3-4b89-9648-290ad7f4effb)) 104 | (pad "57" thru_hole circle (at 0 1.275) (size 0.6 0.6) (drill 0.35) (layers *.Cu) (tstamp f68ae795-1f05-4a39-94cd-eb3e2d140979)) 105 | (model "${KISYS3DMOD}/Package_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm.wrl" 106 | (offset (xyz 0 0 0)) 107 | (scale (xyz 1 1 1)) 108 | (rotate (xyz 0 0 0)) 109 | ) 110 | ) 111 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/library/hunter-cat-nfc.pretty/W25Q16JVUUIQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "W25Q16JVUUIQ" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 62BCEDDB) 4 | (attr through_hole) 5 | (fp_text reference "REF**" (at 0.02 3.18) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp 6973084a-7376-47b4-8b75-df51406d2ec7) 8 | ) 9 | (fp_text value "REF**" (at 0.01 3.19) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 4a2bdb04-11f3-4675-8736-8b6d29b5959b) 12 | ) 13 | (fp_text user "1" (at 2.71 4.85) (layer "F.SilkS") hide 14 | (effects (font (size 1 1) (thickness 0.15))) 15 | (tstamp a6d07d6f-6e6e-407f-87b4-0897b8473c45) 16 | ) 17 | (fp_text user "1" (at 0 0) (layer "F.Fab") hide 18 | (effects (font (size 1 1) (thickness 0.15))) 19 | (tstamp fa3996ea-58a5-40c8-b8c5-862af4766ad0) 20 | ) 21 | (fp_line (start -1.6764 2.1717) (end 1.6764 2.1717) (layer "F.SilkS") (width 0.12) (tstamp 02eef812-bf3d-4afd-aa6e-16a4ec3d73dc)) 22 | (fp_line (start 1.6764 -1.68569) (end 1.6764 -2.1717) (layer "F.SilkS") (width 0.12) (tstamp 42e7f93c-09e9-4ef3-9c92-4bcf75db5f6c)) 23 | (fp_line (start -1.6764 -2.1717) (end -1.6764 -1.68569) (layer "F.SilkS") (width 0.12) (tstamp 46fb9ebc-48a1-43fb-b82f-c8a4945b5d70)) 24 | (fp_line (start 1.6764 -2.1717) (end -1.6764 -2.1717) (layer "F.SilkS") (width 0.12) (tstamp c39d4b49-cd61-4c75-8b3a-b7d17d69e293)) 25 | (fp_line (start -1.6764 1.68569) (end -1.6764 2.1717) (layer "F.SilkS") (width 0.12) (tstamp c5579cb8-b149-46ce-9bf9-bcf989b801ea)) 26 | (fp_line (start 1.6764 2.1717) (end 1.6764 1.68569) (layer "F.SilkS") (width 0.12) (tstamp ee6d1f23-29c2-4b92-963b-bbb883ec2042)) 27 | (fp_circle (center -2.52 -1.3) (end -2.4438 -1.3) (layer "F.SilkS") (width 0.5) (fill none) (tstamp b38d25a9-b03b-43ad-b4ca-ccb1271d9ac1)) 28 | (fp_line (start 1.8034 1.651) (end 1.8034 2.2987) (layer "F.CrtYd") (width 0.05) (tstamp 03aa7303-450a-40d2-abd6-52ba2423b53d)) 29 | (fp_line (start 2.103399 -1.651) (end 2.103399 1.651) (layer "F.CrtYd") (width 0.05) (tstamp 10927c1b-ebfd-45d5-9120-4867c717f270)) 30 | (fp_line (start 1.8034 -2.2987) (end 1.8034 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp 190993fb-13e2-424e-aed9-aab7e640dc26)) 31 | (fp_line (start -2.103399 -1.651) (end -1.8034 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp 2b5dc2db-e1de-4685-af70-bda21c283ac1)) 32 | (fp_line (start 1.8034 -1.651) (end 2.103399 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp 4d725420-6af4-4f2b-9b32-47e2bcd9fca1)) 33 | (fp_line (start -1.8034 2.2987) (end -1.8034 1.651) (layer "F.CrtYd") (width 0.05) (tstamp 50b98d50-7572-49be-b447-b60bc878f623)) 34 | (fp_line (start -1.8034 -2.2987) (end 1.8034 -2.2987) (layer "F.CrtYd") (width 0.05) (tstamp 5a1155ab-3629-4b3a-b807-e67c6f1db6ed)) 35 | (fp_line (start 1.8034 -2.2987) (end 1.8034 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp 663da0bb-040e-43a6-982a-c4e18537fdce)) 36 | (fp_line (start 2.103399 1.651) (end 1.8034 1.651) (layer "F.CrtYd") (width 0.05) (tstamp 6b2cd55e-47ba-4025-85fc-1a5af000b6b6)) 37 | (fp_line (start 1.8034 2.2987) (end -1.8034 2.2987) (layer "F.CrtYd") (width 0.05) (tstamp 6c003daf-35cc-4fcc-8322-7f90b89ca150)) 38 | (fp_line (start 2.103399 1.651) (end 1.8034 1.651) (layer "F.CrtYd") (width 0.05) (tstamp 8936c67a-35ea-4adb-97aa-2e608d3054bf)) 39 | (fp_line (start -1.8034 -1.651) (end -1.8034 -2.2987) (layer "F.CrtYd") (width 0.05) (tstamp 895cd730-bb25-40e7-abed-8dd0a7d24104)) 40 | (fp_line (start 2.103399 -1.651) (end 1.8034 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp 8c43b56e-7293-4003-acbb-4722498418ed)) 41 | (fp_line (start -1.8034 -1.651) (end -1.8034 -2.2987) (layer "F.CrtYd") (width 0.05) (tstamp 9261d14b-3676-45be-82f6-abc89e320210)) 42 | (fp_line (start -1.8034 2.2987) (end -1.8034 1.651) (layer "F.CrtYd") (width 0.05) (tstamp 97fdb163-e0ed-43ef-a45c-99baeb917a42)) 43 | (fp_line (start 1.8034 2.2987) (end -1.8034 2.2987) (layer "F.CrtYd") (width 0.05) (tstamp c01442b0-9b94-4271-b59b-61bfed17b9bb)) 44 | (fp_line (start -2.103399 1.651) (end -1.8034 1.651) (layer "F.CrtYd") (width 0.05) (tstamp c27f3dbc-2c6f-4766-addb-904e809092bf)) 45 | (fp_line (start -2.103399 -1.651) (end -1.8034 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp c57eafd8-e45f-4725-a181-652454161dd9)) 46 | (fp_line (start -2.103399 1.651) (end -2.103399 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp cbd17fa2-2b26-42cd-912e-290d55201b31)) 47 | (fp_line (start 2.103399 -1.651) (end 2.103399 1.651) (layer "F.CrtYd") (width 0.05) (tstamp d393767e-f7d4-4b33-ba5c-e1ff5ca33223)) 48 | (fp_line (start -2.103399 1.651) (end -2.103399 -1.651) (layer "F.CrtYd") (width 0.05) (tstamp d44f6aaa-f8db-4ae4-8055-30867637d971)) 49 | (fp_line (start -1.8034 -2.2987) (end 1.8034 -2.2987) (layer "F.CrtYd") (width 0.05) (tstamp f1bccefa-9050-4660-8f65-af62a216cf84)) 50 | (fp_line (start -1.8034 1.651) (end -2.103399 1.651) (layer "F.CrtYd") (width 0.05) (tstamp f87e64da-fa0c-4b2c-994b-7de507d5096f)) 51 | (fp_line (start 1.8034 1.651) (end 1.8034 2.2987) (layer "F.CrtYd") (width 0.05) (tstamp fc90aa7b-5a1a-4828-8d95-c11efe269ebf)) 52 | (fp_line (start 1.5494 2.0447) (end 1.5494 -2.0447) (layer "F.Fab") (width 0.1) (tstamp 544942af-4bc8-48f9-ade9-436e47b2d059)) 53 | (fp_line (start 1.5494 -2.0447) (end -1.5494 -2.0447) (layer "F.Fab") (width 0.1) (tstamp c9baacc3-b2f6-4e5f-b8d8-5a61852cd88e)) 54 | (fp_line (start -1.5494 -2.0447) (end -1.5494 2.0447) (layer "F.Fab") (width 0.1) (tstamp de3b1730-ac5b-4296-9750-2a6d91fcec1a)) 55 | (fp_line (start -1.5494 2.0447) (end 1.5494 2.0447) (layer "F.Fab") (width 0.1) (tstamp e05e05eb-3836-476f-a11a-aebc6024e210)) 56 | (fp_circle (center -0.889 -1.20015) (end -0.8128 -1.20015) (layer "F.Fab") (width 0.1) (fill none) (tstamp 1aeddff5-502e-4ac0-9b06-6c6acb30e983)) 57 | (pad "1" smd rect (at -1.3692 -1.20015) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7b591666-9ad7-49bf-a2e5-bfca0931771c)) 58 | (pad "2" smd rect (at -1.3692 -0.40005) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 74486759-5b9d-4627-bc73-086587ddedb7)) 59 | (pad "3" smd rect (at -1.3692 0.40005) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4cede614-f863-434b-a614-82cce2d82a79)) 60 | (pad "4" smd rect (at -1.3692 1.20015) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 50ea647a-461d-46d1-a68b-200b7b148900)) 61 | (pad "5" smd rect (at 1.3692 1.20015) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9fa301b4-5f2d-4178-a11e-86ed4917803a)) 62 | (pad "6" smd rect (at 1.3692 0.40005) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 52496477-925f-42d9-a5f3-a0a98b37ad57)) 63 | (pad "7" smd rect (at 1.3692 -0.40005) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 80dbc0e2-3bf5-4816-ab7a-df2c2f52f81d)) 64 | (pad "8" smd rect (at 1.3692 -1.20015) (size 0.960399 0.3056) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d71ac2cc-4b55-4dd2-81f9-068e18ed3971)) 65 | (pad "9" smd rect (at 0 -0.84455) (size 0.3048 0.889) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4e776fc9-cde0-40d4-aa6b-d1f8bf418fd3)) 66 | (pad "10" smd rect (at 0 0.75565) (size 0.3048 0.889) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 950c8a1f-b544-4a09-a49b-c216f476ef50)) 67 | (model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/WSON-8_4x4mm_P0.8mm.step" 68 | (offset (xyz 0 0 0)) 69 | (scale (xyz 0.8 1 1)) 70 | (rotate (xyz 0 0 0)) 71 | ) 72 | ) 73 | -------------------------------------------------------------------------------- /Hardware/HunterCat-NFC/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name HunterCat-NFC-rescue)(type Legacy)(uri ${KIPRJMOD}/HunterCat-NFC-rescue.lib)(options "")(descr "")) 3 | (lib (name hunter-cat-nfc)(type Legacy)(uri ${KIPRJMOD}/library/hunter-cat-nfc.lib)(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 2018 Electronic Cats 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | CatSat Copyright (C) 2018 Electronic Cats 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /LICENSE_HARDWARE: -------------------------------------------------------------------------------- 1 | ERN 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 | # Hunter Cat NFC 2 | 3 |

4 | 5 | 6 | 7 | 8 |

9 | 10 | 11 | 12 | 13 | 14 | 15 |

16 | 17 | ## How does the Hunter Cat NFC work? 18 | 19 | The Hunter Cat NFC is a security tool for contactless (Near Field Communication) used in access control, identification, and bank cards. It is specially created to identify NFC readers and sniffing tools. With this tool, you can audit, read or emulate cards of different types. 20 | 21 | ## Understanding the Hunter Cat NFC and its LEDs  22 | 23 | The device has preloaded reader detection firmware that lets the user know when is near an NFC reader attempting to read his card. 24 | 25 | ### Reader detection  26 | 27 | To detect hidden readers seeking to read your cards without authorization for cloning. 28 | 29 | 1. Turn on Hunter Cat NFC 30 | 2. Wait for the LEDs to turn off 31 | 3. Red LED flashes every 1 second 32 | 4. Approach the reader, the Hunter Cat NFC LEDs should light up indicating if an NFC reader was detected 33 | 5. If it does not turn on and the LED stays on, it is not near an NFC reader 34 | 35 | ## How does it work?  36 | 37 | Hunter Cat NFC can be set to behave either as an NFC reader, a tag, or to establish a two-way connection with another NFC device. 38 | 39 | NFC USB Dongle features a SAMD21 MCU which works in conjunction with the PN7150. The USB interface is provided by SAMD21 MCU, and the NFC functionality is ensured thanks to PN7150. 40 | 41 | NFC is designed to be intuitive for users. The communication between two devices is established in the simplest way possible — by bringing them close to each other. NFC frontend can operate in three distinct modes: 42 | 43 | ### Card emulation mode — where Hunter Cat NFC behaves like a smart card or a tag 44 | 45 | In this mode, Hunter Cat NFC emulates a NFC tag. It doesn’t initiate the communication, it only responds to a NFC reader. A typical application of the card emulation mode is how people use NFC in their smartphones to replace several cards, badges or tags at once (using the same phone for RFID access controls, contactless payments and so on). Card emulation mode, however, is not limited to smartphones but can be used for any portable device. 46 | 47 | ### Read/Write — where Hunter Cat NFC behaves as an NFC Reader/Writer 48 | 49 | Here, Hunter Cat NFC communicates with a passive tag, NFC smart card, or an NFC device operating in card emulation mode. It can read or write to a tag (although reading is a more common use-case because tags will often be write protected). In this mode, the Hunter Cat NFC generates the RF field, while a tag or card only modulates it. 50 | 51 | ### Peer-to-peer — for more complex interactions 52 | 53 | Peer-to-peer mode establishes a two-way communication channel between a pair of NFC-enabled devices. When a user brings two devices close to each other, the two NFC chips establish a P2P connection and exchange data. 54 | 55 | ## Characteristics: 56 | * Procesador Cortex M0+ 57 | * USB C 2.0 58 | * NFC Reader, Card and NFC Forum 59 | * Arduino compatible 60 | * CircuitPython compatible 61 | * UF2 Bootloader 62 | * 3 LEDs status 63 | * Open Hardware 64 | * Battery 65 | * RF protocols supported 66 | * NFCIP-1, NFCIP-2 protocol  67 | * ISO/IEC 14443A, ISO/IEC 14443B PICC, NFC Forum T4T modes via host interface 68 | * NFC Forum T3T via host interface 69 | * ISO/IEC 14443A, ISO/IEC 14443B PCD designed according to NFC Forum digital protocol T4T platform and ISO-DEP  70 | * FeliCa PCD mode 71 | * MIFARE Classic PCD encryption mechanism (MIFARE Classic 1K/4K) 72 | * NFC Forum tag 1 to 5 (MIFARE Ultralight, Jewel, Open FeliCa tag, MIFAREDESFire 73 | * ISO/IEC 15693/ICODE VCD mode  74 | * Includes NXP ISO/IEC14443-A and Innovatron ISO/IEC14443-B intellectual property licensing rights 75 | 76 | 77 | ## Disclaimer 78 | >[!IMPORTANT] 79 | >Hunter Cat NFC, is a wireless penetration testing tool intended solely for use in authorized security audits, where such usage is permitted by applicable laws and regulations. Before utilizing this tool, it is crucial to ensure compliance with all relevant legal requirements and obtain appropriate permissions from the relevant authorities. 80 | > 81 | >It is essential to note that the board does not provide any means or authorization to utilize credit cards or engage in any financial transactions that are not legally authorized. Electronic Cats holds no responsibility for any unauthorized use of the tool or any resulting damages. 82 | 83 | ## How to contribute 84 | Contributions are welcome! 85 | 86 | Please read the document [**Contribution Manual**](https://github.com/ElectronicCats/electroniccats-cla/blob/main/electroniccats-contribution-manual.md) which will show you how to contribute your changes to the project. 87 | 88 | ✨ Thanks to all our [contributors](https://github.com/ElectronicCats/HunterCatNFC/graphs/contributors)! ✨ 89 | 90 | See [**_Electronic Cats CLA_**](https://github.com/ElectronicCats/electroniccats-cla/blob/main/electroniccats-cla.md) for more information. 91 | 92 | See the [**community code of conduct**](https://github.com/ElectronicCats/electroniccats-cla/blob/main/electroniccats-community-code-of-conduct.md) for a vision of the community we want to build and what we expect from it. 93 | 94 | ## Donation 95 | 96 | 97 | 98 | 99 | Electronic Cats invests time and resources in providing this open-source design. Please support Electronic Cats and open-source hardware by purchasing products from Electronic Cats! 100 | 101 | Designed by Electronic Cats. 102 | 103 | Firmware released under an GNU AGPL v3.0 license. See the LICENSE file for more information. 104 | 105 | Hardware released under an CERN Open Hardware Licence v1.2. See the LICENSE_HARDWARE file for more information. 106 | 107 | Electronic Cats is a registered trademark. Please do not use if you sell these PCBs. 108 | 109 | November 2019 110 | 111 | ## License 112 | 113 | 114 | 115 | 116 | --------------------------------------------------------------------------------