34 lines
659 B
C
34 lines
659 B
C
#include <string.h>
|
|
#include "FreeRTOS.h"
|
|
#include "ostask.h"
|
|
#include "cmsis_os2.h"
|
|
#include "charge.h"
|
|
#ifdef FEATURE_DRIVER_KEYPAD_ENABLE
|
|
#include "keypad.h"
|
|
#include "kpc.h"
|
|
#endif
|
|
#ifdef FEATURE_SUBSYS_STATUS_ENABLE
|
|
#include "status.h"
|
|
#endif
|
|
#ifdef FEATURE_SUBSYS_MODE_ENABLE
|
|
#include "mode.h"
|
|
#endif
|
|
#include "bsp_custom.h"
|
|
#include DEBUG_LOG_HEADER_FILE
|
|
#include "plat_config.h"
|
|
#ifdef FEATURE_SUBSYS_APPHUB_ENABLE
|
|
#include "app.h"
|
|
#include "apphub.h"
|
|
#endif
|
|
|
|
#ifdef FEATURE_SUBSYS_SYSLOG_ENABLE
|
|
#include "syslog.h"
|
|
#endif
|
|
|
|
#ifdef FEATURE_SUBSYS_GUI_FPUI_ENABLE
|
|
#include "fpui.h"
|
|
#include "ui.h"
|
|
#include "merged.h"
|
|
#endif
|
|
#include "featureSetting.h"
|