forked from ccsens_hardware/stc_ttss_weight
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
/*****************************************************************************
|
|
* uart.h: Header file for NXP LPC17xx Family Microprocessors
|
|
*
|
|
* Copyright(C) 2013, cc
|
|
* All rights reserved.
|
|
*
|
|
* History
|
|
* 2013.05.24 ver 1.00 Prelimnary version, first Release
|
|
|
|
*
|
|
******************************************************************************/
|
|
#ifndef __DEBUG_APP_H
|
|
#define __DEBUG_APP_H
|
|
#include "LPC17xxcc.h"
|
|
#include "LPC17xxzlg.h"
|
|
#include "LPC17xx_macro.h"
|
|
|
|
#include "Task.h"
|
|
#include "time.h"
|
|
|
|
#include "debug_drv.h"
|
|
|
|
|
|
struct _s_task_debug_led_
|
|
{
|
|
_ts_task task;
|
|
unsigned char x;
|
|
unsigned char y;
|
|
};
|
|
extern struct _s_task_debug_led_ s_task_debug_led;
|
|
|
|
#define D_task_debug_led_init 0x10
|
|
#define D_task_debug_led_key 0x11
|
|
#define D_task_debug_led_key2 0x12
|
|
|
|
void L2_task_debug_led_init(void);
|
|
|
|
extern void L2_task_debug_led_handdle(struct _s_task_debug_led_ *s);
|
|
extern void L1_debug_init(void);
|
|
|
|
#endif /* end __DEBUG_APP_H */
|
|
/*****************************************************************************
|
|
** End Of File
|
|
******************************************************************************/
|
|
|