From 0ef8e6eed9c34b1aa6114557193b87c07e97ace7 Mon Sep 17 00:00:00 2001 From: marco <49691247+marcoSchr@users.noreply.github.com> Date: Sat, 8 Feb 2025 19:15:11 +0100 Subject: [PATCH] NVM: added nvm_getDesc function to Module17 driver --- platform/drivers/NVM/nvmem_Mod17.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform/drivers/NVM/nvmem_Mod17.c b/platform/drivers/NVM/nvmem_Mod17.c index b1880af7..33c5693a 100644 --- a/platform/drivers/NVM/nvmem_Mod17.c +++ b/platform/drivers/NVM/nvmem_Mod17.c @@ -119,6 +119,12 @@ void nvm_readCalibData(void *buf) (void) buf; } +const struct nvmDescriptor *nvm_getDesc(const size_t index) +{ + (void) index; + return NULL; +} + void nvm_readHwInfo(hwInfo_t *info) { (void) info;