mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 14:05:31 +00:00
This patch adds adds an EEPROM driver supporting the on-chip EEPROM found on NXP LPC11U6X MCUs. Note that this driver is only a wrapper relying entirely on the IAP (In-Application Programming) EEPROM commands. Signed-off-by: Simon Guinot <simon.guinot@seagate.com>
12 lines
460 B
CMake
12 lines
460 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE eeprom_handlers.c)
|
|
zephyr_library_sources_ifdef(CONFIG_EEPROM_SHELL eeprom_shell.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_EEPROM_AT2X eeprom_at2x.c)
|
|
zephyr_library_sources_ifdef(CONFIG_EEPROM_LPC11U6X eeprom_lpc11u6x.c)
|
|
zephyr_library_sources_ifdef(CONFIG_EEPROM_STM32 eeprom_stm32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_EEPROM_SIMULATOR eeprom_simulator.c)
|