| 58 | protected: |
| 59 | |
| 60 | virtual void showPixels(PixelController<RGB_ORDER> & pixels) FL_NOEXCEPT { |
| 61 | mWait.wait(); |
| 62 | int cnt = FASTLED_INTERRUPT_RETRY_COUNT; |
| 63 | while((showRGBInternal(pixels)==0) && cnt--) { |
| 64 | #ifdef FASTLED_DEBUG_COUNT_FRAME_RETRIES |
| 65 | ++_retry_cnt; |
| 66 | #endif |
| 67 | delayMicroseconds(WAIT_TIME); |
| 68 | } |
| 69 | mWait.mark(); |
| 70 | } |
| 71 | |
| 72 | #define _ESP_ADJ (0) |
| 73 | #define _ESP_ADJ2 (0) |
nothing calls this directly
no test coverage detected