Skip to content
Snippets Groups Projects
Verified Commit 4c419805 authored by rahix's avatar rahix
Browse files

chore(pycardium): Fix style

parent 766caee1
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,7 @@ void gc_collect(void) ...@@ -33,6 +33,7 @@ void gc_collect(void)
gc_collect_start(); gc_collect_start();
gc_collect_root( gc_collect_root(
&dummy, &dummy,
((mp_uint_t)stack_top - (mp_uint_t)&dummy) / sizeof(mp_uint_t)); ((mp_uint_t)stack_top - (mp_uint_t)&dummy) / sizeof(mp_uint_t)
);
gc_collect_end(); gc_collect_end();
} }
#include "py/mpconfig.h" #include "py/mpconfig.h"
/* TODO: Replace this with a proper implementation */ /* TODO: Replace this with a proper implementation */
static inline mp_uint_t mp_hal_ticks_ms(void) { return 0; } static inline mp_uint_t mp_hal_ticks_ms(void)
{
return 0;
}
void mp_hal_set_interrupt_char(char c); void mp_hal_set_interrupt_char(char c);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment