| 66 | } |
| 67 | |
| 68 | void initializeRadiosMultiMode() { |
| 69 | if (radio1.begin()) { |
| 70 | configureRadio(radio1, channelGroup1, sizeof(channelGroup1)); |
| 71 | } |
| 72 | if (radio2.begin()) { |
| 73 | configureRadio(radio2, channelGroup2, sizeof(channelGroup2)); |
| 74 | } |
| 75 | if (radio3.begin()) { |
| 76 | configureRadio(radio3, channelGroup3, sizeof(channelGroup3)); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | void initializeRadios() { |
| 81 | if (currentMode == BLE_MODULE) { |
no test coverage detected