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

📄 makefile

📁 TI的达芬奇系列dm355使用的spi模块驱动
💻
字号:
## Makefile for kernel SPI drivers.#ifeq ($(CONFIG_SPI_DEBUG),y)EXTRA_CFLAGS += -DDEBUGendif# small core, mostly translating board-specific# config declarations into driver model codeobj-$(CONFIG_SPI_MASTER)		+= spi.o# SPI master controller drivers (bus)obj-$(CONFIG_SPI_DM355)         += dm355_spi_master.oobj-$(CONFIG_SPI_DM355_BITBANG) += dm355_spi_bitbang.oobj-$(CONFIG_SPI_BITBANG)		+= spi_bitbang.oobj-$(CONFIG_SPI_BUTTERFLY)		+= spi_butterfly.oobj-$(CONFIG_SPI_VR)			+= vr_spi.o# 	... add above this line ...# SPI protocol drivers (device/link on bus)# 	... add above this line ...# SPI slave controller drivers (upstream link)# 	... add above this line ...# SPI slave drivers (protocol for that link)# 	... add above this line ...

⌨️ 快捷键说明

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