Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of LG by
DeviceDebug.h
- Committer:
- Diletant
- Date:
- 2016-07-10
- Revision:
- 184:2bd8ec44998f
- Parent:
- 178:672ef279c8e0
File content as of revision 184:2bd8ec44998f:
#ifndef __DEVICE_DEBUG_H__
#define __DEVICE_DEBUG_H__
#warning "Program config: debug unit enabled!!!"
#define DEBUG_QEI
#define DEBUG_DECODER_INPUT
#define DEBUG_ENCODER_OUTPUT
#define DEBUG_USER_BAUD
#define DEV_BOARD_HAOYU
#ifdef DEV_BOARD_HAOYU
#warning "Program config: development board!!!"
#endif
typedef struct _DeviceDebugSettings {
} DeviceDebugSettings;
typedef struct _DeviceDebugState {
} DeviceDebugState;
typedef struct _DeviceDebug {
DeviceDebugSettings settings;
DeviceDebugState state;
} DeviceDebug;
void InitDebugDefaultSettings(void);
void InitDebugState(void);
void DeviceStartDebug(void);
#endif /* __DEVICE_DEBUG_H__ */
