- #ifndef _FACTORY_H__
- #define _FACTORY_H__
- #include "prot/can_message.h"
- #ifdef CONFIG_BOARD_MCXXX
- void can_process_factory_message(can_message_t *can_message);
- bool factory_is_running(void);
- #else
- static void can_process_factory_message(can_message_t *can_message){
- }
- static bool factory_is_running(void){
- return false;
- }
- #endif
- #endif /* _FACTORY_H__ */
|