⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 includes.h

📁 基于TI公司Cortex-M3的uart超级通信开发
💻 H
字号:
#include "inc/lm3s9b96.h"
#include "inc/hw_types.h"
#include "inc/hw_memmap.h"
#include "inc/hw_ints.h"
#include "inc/hw_uart.h"
#include "inc/hw_gpio.h"

#include "driverlib/sysctl.h"
#include "driverlib/gpio.h"
#include "driverlib/interrupt.h"

#include "drivers/kitronix320x240x16_ssd2119_8bit.h"
#include "drivers/set_pinout.h"

#include "grlib/grlib.h"
#include "grlib/widget.h"
#include "grlib/canvas.h"
#include "grlib/checkbox.h"
#include "grlib/container.h"
#include "grlib/listbox.h"

#include "stdio.h"

//define the led port
#define LED_PERIPH SYSCTL_PERIPH_GPIOG
#define LED_PORT GPIO_PORTF_BASE
#define LED_PIN GPIO_PIN_3

// define the key port
#define KEY_PERIPH SYSCTL_PERIPH_GPIOJ
#define KEY_PORT GPIO_PORTJ_BASE
#define KEY_PIN GPIO_PIN_7	
#define KEY_INT INT_GPIOJ

// define the uart port
#define UART_PERIPH SYSCTL_PERIPH_GPIOA


⌨️ 快捷键说明

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