-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aef1aa9
commit 7a0166c
Showing
46 changed files
with
6,650 additions
and
910 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
obj-$(CONFIG_DRIVERS_CCMU) += ccmu/ | ||
obj-$(CONFIG_DRIVERS_UART) += uart/ | ||
obj-$(CONFIG_DRIVERS_RTC) += rtc/ | ||
obj-$(CONFIG_DRIVERS_SPI) += spi/ | ||
obj-$(CONFIG_DRIVERS_GPIO) += gpio/ | ||
obj-$(CONFIG_DRIVERS_DMA) += dma/ | ||
obj-$(CONFIG_DRIVERS_TWI) += twi/ | ||
obj-$(CONFIG_DRIVERS_PWM) += pwm/ | ||
obj-$(CONFIG_DRIVERS_GPADC) += gpadc/ | ||
obj-$(CONFIG_DRIVERS_MSGBOX) += msgbox/ | ||
obj-y += common/ | ||
obj-y += common/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
menu "GPADC Devices" | ||
|
||
config DRIVERS_GPADC | ||
bool "enable gpadc driver" | ||
default y | ||
|
||
config HAL_TEST_GPADC | ||
bool "enable gpadc hal APIs test command" | ||
depends on DRIVERS_GPADC | ||
default n | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-y += hal_gpadc.o |
Oops, something went wrong.