Files
Upsilon/python/port/interrupt_helper.h
Émilie Feral 52f5858ffd [python][apps/code] Enable interrupting python execution
Change-Id: Iadf7038f79f0289ce20d7ded42f8fe70894f0c0a
2017-08-28 13:30:46 +02:00

18 lines
305 B
C

#ifndef PYTHON_INTERRUPT_HELPER_H
#define PYTHON_INTERRUPT_HELPER_H
#ifdef __cplusplus
extern "C" {
#endif
/* shouldInterrupt effectively does something once every 20000 calls. It checks
* if a key is down to raise an interruption flag. */
void shouldInterrupt();
#ifdef __cplusplus
}
#endif
#endif