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.
29 lines
780 B
29 lines
780 B
/*****************************************************************************
|
|
* uart.h: Header file for NXP LPC17xx Family Microprocessors
|
|
*
|
|
* Copyright (c) 2023 CCSENS
|
|
* All rights reserved.
|
|
*
|
|
* History
|
|
* 2009.05.27 ver 1.00 Prelimnary version, first Release
|
|
*
|
|
******************************************************************************/
|
|
#ifndef _C_DELAY_H_
|
|
#define _C_DELAY_H_
|
|
|
|
|
|
|
|
#include "c_type51.h"
|
|
|
|
extern void Lc_delay_us(vU16 i);
|
|
extern void Lc_delay_ms(vU16 i);
|
|
#define Lc_delay_100us Delay100us
|
|
|
|
///Delay_100us
|
|
|
|
|
|
|
|
#endif /* end __UART_H */
|
|
/*****************************************************************************
|
|
** End Of File
|
|
******************************************************************************/
|
|
|