(value)
| 310 | # @param value value to write (32-bit) |
| 311 | # @return value value written (32-bit) |
| 312 | def wrTimerInterval(value): |
| 313 | if (CONTROL & CONTROL_ENABLE_Msk) != 0: |
| 314 | value = Record.updateTimer(value) |
| 315 | return value |
| 316 | |
| 317 | |
| 318 | ## Timer Event |
nothing calls this directly
no test coverage detected