1 /* 2 * Copyright (c) 2025 Croxel Inc. 3 * Copyright (c) 2025 CogniPilot Foundation 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 #include <platform/argus_nvm.h> 9 NVM_WriteBlock(uint32_t id,uint32_t block_size,uint8_t const * buf)10status_t NVM_WriteBlock(uint32_t id, uint32_t block_size, uint8_t const *buf) 11 { 12 return ERROR_NOT_IMPLEMENTED; 13 } 14 NVM_ReadBlock(uint32_t id,uint32_t block_size,uint8_t * buf)15status_t NVM_ReadBlock(uint32_t id, uint32_t block_size, uint8_t *buf) 16 { 17 return ERROR_NOT_IMPLEMENTED; 18 } 19