Returns the copy protection dongle state of PB1. A return value of -1 means not used by copy protection dongle
| 96 | |
| 97 | // Returns the copy protection dongle state of PB1. A return value of -1 means not used by copy protection dongle |
| 98 | int CopyProtectionDonglePB1(void) |
| 99 | { |
| 100 | if (copyProtectionDongleType == DT_HAYDENCOMPILER) |
| 101 | return 0; // connected to GND |
| 102 | |
| 103 | return -1; |
| 104 | } |
| 105 | |
| 106 | // Returns the copy protection dongle state of PB2. A return value of -1 means not used by copy protection dongle |
| 107 | int CopyProtectionDonglePB2(void) |