| 138 | } |
| 139 | |
| 140 | void level_2_function_no_track(int depth, int iterations) |
| 141 | { |
| 142 | busy_wait_ns(300); |
| 143 | for (int i = 0; i < iterations; ++i) |
| 144 | { |
| 145 | level_3_function_no_track(depth + 1); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | void level_1_function_no_track(int iterations) |
| 150 | { |
no test coverage detected