mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
49 lines
1.1 KiB
C
49 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2016 Freie Universität Berlin
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup cpu_nrf5x_common
|
|
* @ingroup drivers_periph_flashpage
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Low-level flash page driver implementation
|
|
*
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include "cpu.h"
|
|
#include "assert.h"
|
|
#include "periph/flashpage.h"
|
|
|
|
void flashpage_write(int page, const void *data)
|
|
{
|
|
assert(page < (int)FLASHPAGE_NUMOF);
|
|
|
|
uint32_t *page_addr = (uint32_t *)flashpage_addr(page);
|
|
const uint32_t *data_addr = data;
|
|
|
|
/* erase given page */
|
|
NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Een;
|
|
NRF_NVMC->ERASEPAGE = (uint32_t)page_addr;
|
|
while (NRF_NVMC->READY == 0) {}
|
|
|
|
/* write data to page */
|
|
if (data != NULL) {
|
|
NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Wen;
|
|
for (unsigned i = 0; i < (FLASHPAGE_SIZE / 4); i++) {
|
|
*page_addr++ = data_addr[i];
|
|
}
|
|
}
|
|
|
|
/* finish up */
|
|
NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Ren;
|
|
}
|