| 60 | virtual u16 getMaxRefreshRate() const { return 400; } |
| 61 | |
| 62 | virtual void showPixels(PixelController<RGB_ORDER>& pixels) FL_NOEXCEPT { |
| 63 | mWait.wait(); |
| 64 | cli(); |
| 65 | if (!showRGBInternal(pixels)) { |
| 66 | sei(); |
| 67 | delayMicroseconds(WAIT_TIME); |
| 68 | cli(); |
| 69 | showRGBInternal(pixels); |
| 70 | } |
| 71 | sei(); |
| 72 | mWait.mark(); |
| 73 | } |
| 74 | |
| 75 | static u32 showRGBInternal(PixelController<RGB_ORDER> pixels) FL_NOEXCEPT { |
| 76 | struct M0ClocklessData data; |
nothing calls this directly
no test coverage detected