ext: hal: ti: simplelink: Add comments to CMakeLists.txt

Add comments explaining why these three driverlib files need to be
built rather than using the ROM versions.

Signed-off-by: Gil Pitney <gil.pitney@linaro.org>
This commit is contained in:
Gil Pitney 2018-04-19 16:52:07 -07:00 committed by Kumar Gala
commit c5f1b0b862

View file

@ -9,6 +9,9 @@ zephyr_compile_definitions(
zephyr_library() zephyr_library()
zephyr_library_compile_definitions(${COMPILER}) zephyr_library_compile_definitions(${COMPILER})
# pin.c required by ti/drivers/spi/SPICC32XXDMA.c
# prcm.c required by rom_patch.h (i.e., can't use ROM version).
# utils.c required by prcm.c (calling UtilsDelay).
zephyr_library_sources( zephyr_library_sources(
driverlib/utils.c driverlib/utils.c
driverlib/prcm.c driverlib/prcm.c