Add I2C1 in Kconfig

This commit is contained in:
Wu Han 2018-09-29 18:44:53 +08:00
parent 52fa0189ad
commit 64c9eaa7dc
3 changed files with 14 additions and 8 deletions

View File

@ -1,3 +1,9 @@
config BSP_USING_I2C
bool "Enable I2C1 (PB6/7)"
default n
select RT_USING_I2C
select RT_USING_I2C_BITOPS
config RT_USING_UART1
bool "Enable UART1 (PA9/10)"
default y

View File

@ -15,7 +15,7 @@ usart.c
if GetDepend(['RT_USING_PIN']):
src += ['gpio.c']
if GetDepend(['RT_USING_I2C_BITOPS']):
if GetDepend(['BSP_USING_I2C']):
src += ['i2c.c']
# add canbus driver.