| 48 | virtual u16 getMaxRefreshRate() const { return 400; } |
| 49 | |
| 50 | virtual void showPixels(PixelController<RGB_ORDER> & pixels) FL_NOEXCEPT { |
| 51 | mWait.wait(); |
| 52 | cli(); |
| 53 | if(!showRGBInternal(pixels)) { |
| 54 | sei(); delayMicroseconds(WAIT_TIME); cli(); |
| 55 | showRGBInternal(pixels); |
| 56 | } |
| 57 | sei(); |
| 58 | mWait.mark(); |
| 59 | } |
| 60 | |
| 61 | // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then |
| 62 | // gcc will use register Y for the this pointer. |
nothing calls this directly
no test coverage detected