engine_control/source/firmware/arch/stm32f4xx/include/stm32f4xx_ctx.h

17 lines
280 B
C
Raw Normal View History

2016-07-23 05:59:54 +00:00
/*
* stm32f4xx_ctx.h
*
* Created on: Oct 1, 2015
* Author: tkl
*/
#ifndef STM32F4XX_CTX_H_
#define STM32F4XX_CTX_H_
void start_first_task(void);
void arch_schedule(void);
#define restore_context() { enable_irq(); start_first_task(); }
#endif /* STM32F4XX_CTX_H_ */