Files
espurna/code
Maxim Prokhorov a5bb8e457a system: fix ticker arg cast
Don't introduce our callback to the type system, continue to bind the
ticker instance as the timer's arg and just use the lambda to pass the
argument to the reset function

```
libraries/Ticker/src/Ticker.h:136:41: warning: cast between incompatible function types from 'void (*)(CustomResetReason)' to 'Ticker::callback_with_arg_t' {aka 'void (*)(void*)'} [-Wcast-function-type]
  136 |         _attach_ms(milliseconds, false, reinterpret_cast<callback_with_arg_t>(callback), reinterpret_cast<void*>(arg));
      |                                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
2021-12-18 23:47:20 +03:00
..
2021-12-18 23:47:20 +03:00
2019-07-11 00:34:17 +03:00
2021-12-08 18:05:25 +03:00
2019-07-11 00:34:17 +03:00
2019-07-11 00:34:17 +03:00