| 100 | } |
| 101 | |
| 102 | void initialize_MultiMode() { |
| 103 | if (radio_1.begin()) { |
| 104 | configure_Radio(radio_1, channelGroup_1, sizeof(channelGroup_1)); |
| 105 | } |
| 106 | if (radio_2.begin()) { |
| 107 | configure_Radio(radio_2, channelGroup_2, sizeof(channelGroup_2)); |
| 108 | } |
| 109 | if (radio_3.begin()) { |
| 110 | configure_Radio(radio_3, channelGroup_3, sizeof(channelGroup_3)); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | void initialize_Radios() { |
| 115 | if (current == ACTIVE_MODE) { |
no test coverage detected