ShipCentralControl/Loader_DTU/User/program.h

24 lines
365 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 因为main.c由STM32CubeMX自动生成
// 本模块实现用户自定义的main功能
#ifndef __PROGRAM_H
#define __PROGRAM_H
#include "type.h"
// 是否允许调试打印输出?
#define PRINT_DEBUG 1
#if PRINT_DEBUG
#define PRINTF printf
#else
#define PRINTF NO_PRINTF
#endif
#define NO_PRINTF(format, ...) {}
// 主任务在program模块实现
void main_task(void *argument);
#endif