| 57 | } |
| 58 | |
| 59 | __forceinline void fastDelay(int d) |
| 60 | { |
| 61 | fixedDelay(); |
| 62 | #ifdef SPISOFT_DELAY_VARIABLE |
| 63 | while(d-- > 0) { |
| 64 | __asm__ volatile("nop" :::); |
| 65 | } |
| 66 | #else |
| 67 | (void)d; |
| 68 | #endif |
| 69 | } |
| 70 | |
| 71 | } // namespace spisoft |
| 72 |
nothing calls this directly
no test coverage detected