This commit is contained in:
aozhiwei 2022-12-18 14:03:47 +08:00
parent fe1d0a5def
commit ce0c7e6cfa

View File

@ -10,7 +10,7 @@ namespace f8
public:
TimerWp(a8::XTimerWp wp): p_(wp) {};
bool expired() { return p_.expired();};
auto&& lock() { return p_.lock(); };
auto lock() { return p_.lock(); };
private:
a8::XTimerWp p_;