fast-feedback virtual target task code on STM Nucleo

Dependencies:   mbed

core/scheduler.h

Committer:
gwappa
Date:
2018-07-21
Revision:
27:b31ea8d74f9e

File content as of revision 27:b31ea8d74f9e:

#ifndef SCHEDULER_H_
#define SCHEDULER_H_

#include "mbed.h"

namespace scheduler
{
    void set(const us_timestamp_t& timeout_us, Callback<void ()> func);
    void reset();
}
    

#endif