Skip to content
Snippets Groups Projects
Commit 31ea1585 authored by Damien George's avatar Damien George
Browse files

esp8266: Change machine.Timer callback to soft callback.

parent 1b7d6726
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,7 @@ STATIC mp_obj_t esp_timer_make_new(const mp_obj_type_t *type, size_t n_args, siz
STATIC void esp_timer_cb(void *arg) {
esp_timer_obj_t *self = arg;
mp_call_function_1_protected(self->callback, self);
mp_sched_schedule(self->callback, self);
}
STATIC mp_obj_t esp_timer_init_helper(esp_timer_obj_t *self, mp_uint_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment