beagle_defs.h

来自「Windows CE 6.0 BSP for the Beagle Board.」· C头文件 代码 · 共 36 行

H
36
字号
//
// Copyright (c) Special Computing.  All rights reserved. 
//
//------------------------------------------------------------------------------
//
//  Header: beagle_defs.h
//
//  BeagleBoard specifics defines and macros.
//
//------------------------------------------------------------------------------
#ifndef __BEAGLE_DEFS_H
#define __BEAGLE_DEFS_H

#if __cplusplus
extern "C" {
#endif

#define DEBUG_LED_OFF		0
#define DEBUG_LED_ON		1
#define DEBUG_LED_TOGGLE	2

#define DEBUG_LED_GPIO5				GPIO5_149				// USER0 LED on GPIO5_149


#define	DEBUG_UART_REGS_PA			OMAP3_UART3_REGS_PA		// Debug console UART

#define KITL_UART_REGS_PA			OMAP3_UART2_REGS_PA		// Serial KITL UART
#define KITL_UART_DEFAULT_BAUD		115200


#if __cplusplus
}
#endif

#endif 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?