mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 11:15:56 +00:00
Add driver support for Atmel SAM device ID, which is 16-bytes long. On this SoC family, the device ID is part of the flash controller and complex to read. Therefore the driver reads it once at boot time and then just returned the copy saved in RAM. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
11 lines
487 B
CMake
11 lines
487 B
CMake
zephyr_sources_ifdef(CONFIG_USERSPACE hwinfo_handlers.c)
|
|
zephyr_sources_ifdef(CONFIG_HWINFO hwinfo_weak_impl.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_HWINFO_STM32 hwinfo_stm32.c)
|
|
zephyr_sources_ifdef(CONFIG_HWINFO_NRF hwinfo_nrf.c)
|
|
zephyr_sources_ifdef(CONFIG_HWINFO_MCUX_SIM hwinfo_mcux_sim.c)
|
|
zephyr_sources_ifdef(CONFIG_HWINFO_IMXRT hwinfo_imxrt.c)
|
|
zephyr_sources_ifdef(CONFIG_HWINFO_SAM hwinfo_sam.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_HWINFO_SHELL hwinfo_shell.c)
|