Dmitry Kovalev / Mbed 2 deprecated LG2

Dependencies:   mbed

Fork of LG by igor Apu

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__ */