| 122 | } |
| 123 | |
| 124 | void nfcStopScanning(void) |
| 125 | { |
| 126 | bool new3ds_flag = false; |
| 127 | |
| 128 | APT_CheckNew3DS(&new3ds_flag); |
| 129 | |
| 130 | NFC_StopTagScanning(); |
| 131 | |
| 132 | if(!new3ds_flag) |
| 133 | { |
| 134 | NFC_StopCommunication(); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | static Result NFC_Initialize(NFC_OpType type) |
| 139 | { |
nothing calls this directly
no test coverage detected