This repository was archived by the owner on Oct 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +47
-0
lines changed Expand file tree Collapse file tree 4 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2020 Nordic Semiconductor ASA
3+ *
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+ #include "NRF_NVMC.h"
7+
8+ /*
9+ * This is only a stub of the register interface with no functionality behind
10+ */
11+
12+ NRF_NVMC_Type NRF_NVMC_regs = {0 };
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2020 Nordic Semiconductor ASA
3+ *
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+ #ifndef _NRF_HW_MODEL_NVMC_H
7+ #define _NRF_HW_MODEL_NVMC_H
8+
9+ #include "NRF_regs.h"
10+
11+ #ifdef __cplusplus
12+ extern "C" {
13+ #endif
14+
15+ extern NRF_NVMC_Type NRF_NVMC_regs ;
16+
17+ #ifdef __cplusplus
18+ }
19+ #endif
20+
21+ #endif
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2020 Nordic Semiconductor ASA
3+ *
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+ #ifndef BS_NRF_NVMC_H__
7+ #define BS_NRF_NVMC_H__
8+
9+ #include "../drivers/nrfx_common.h"
10+
11+ #endif /* BS_NRF_NVMC_H__ */
Original file line number Diff line number Diff line change @@ -81,6 +81,9 @@ extern NRF_GPIO_Type NRF_P0_regs;
8181extern NRF_GPIOTE_Type NRF_GPIOTE_regs ;
8282#undef NRF_GPIOTE_BASE
8383#define NRF_GPIOTE_BASE (&NRF_GPIOTE_regs)
84+ extern NRF_NVMC_Type NRF_NVMC_regs ;
85+ #undef NRF_NVMC_BASE
86+ #define NRF_NVMC_BASE (&NRF_NVMC_regs)
8487
8588
8689/**
You can’t perform that action at this time.
0 commit comments