/* | |
* Copyright (c) 2025 Croxel Inc. | |
* Copyright (c) 2025 CogniPilot Foundation | |
* | |
* SPDX-License-Identifier: Apache-2.0 | |
*/ | |
#include <platform/argus_nvm.h> | |
status_t NVM_WriteBlock(uint32_t id, uint32_t block_size, uint8_t const *buf) | |
{ | |
return ERROR_NOT_IMPLEMENTED; | |
} | |
status_t NVM_ReadBlock(uint32_t id, uint32_t block_size, uint8_t *buf) | |
{ | |
return ERROR_NOT_IMPLEMENTED; | |
} |