release the CS select
| 275 | |
| 276 | // release the CS select |
| 277 | void inline release() FL_NOEXCEPT __attribute__((always_inline)) { |
| 278 | if (mInitialized) { |
| 279 | ::SPI.endTransaction(); |
| 280 | } |
| 281 | if(mPSelect != nullptr) { |
| 282 | mPSelect->release(); |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | void endTransaction() FL_NOEXCEPT { |
| 287 | waitFully(); |
nothing calls this directly
no test coverage detected