Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nrfx config files to custom directory #314

Merged
merged 3 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build_tools/third_party/nrfx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ target_include_directories(nrfx_uarte
${nrfx_DIR}
${nrfx_DIR}/drivers/include/
${nrfx_DIR}/hal/
${nrfx_DIR}/templates/
${nrfx_DIR}/mdk/
${nrfx_DIR}/soc/
)
Expand Down
14 changes: 12 additions & 2 deletions third_party/nrfx-custom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,20 @@ This folder contains a subset of files imported from [NordicSemiconductor/nrfx](

- The [`nrf5340_xxaa_application.ld`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/mdk/nrf5340_xxaa_application.ld) linker script was imported at state NordicSemiconductor/nrfx@7ef620b.

- The file [`nrfx.h`](https://github.com/NordicSemiconductor/nrfx/blob/1c721175f22dbb1bf125a570a427b53f810881bb/nrfx.h) was imported at state NordicSemiconductor/nrfx@1c72117.

- The file [`nrf_common.ld`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/mdk/nrf_common.ld) was imported at state NordicSemiconductor/nrfx@7ef620b.

- The file [`gcc_startup_nrf52840.S`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/mdk/gcc_startup_nrf52840.S) was imported at state NordicSemiconductor/nrfx@7ef620b.

- The file [`gcc_startup_nrf5340_application.S`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/mdk/gcc_startup_nrf5340_application.S) was imported at state NordicSemiconductor/nrfx@7ef620b.

- The file [`nrfx_config_common.h`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/templates/nrfx_config_common.h) was imported at state NordicSemiconductor/nrfx@7ef620b.

- The file [`nrfx_config_nrf5340_application.h`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/templates/nrfx_config_nrf5340_application.h) was imported at state NordicSemiconductor/nrfx@7ef620b.

- The file [`nrfx_config_nrf52840.h`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/templates/nrfx_config_nrf52840.h) was imported at state NordicSemiconductor/nrfx@7ef620b.

- The file [`nrfx_config.h`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/templates/nrfx_config.h) was imported at state NordicSemiconductor/nrfx@7ef620b and modified to exclude unsupported devices.

- The file [`nrfx_glue.h`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/templates/nrfx_glue.h) was imported at state NordicSemiconductor/nrfx@7ef620b and implementations for necessary features were added.

- The file [`nrfx_log.h`](https://github.com/NordicSemiconductor/nrfx/blob/7ef620bedd3fd41828e0f81523a1d08a986b8a0e/templates/nrfx_log.h) was imported at state NordicSemiconductor/nrfx@7ef620b.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2017 - 2023, Nordic Semiconductor ASA
* Copyright 2023 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V.
* Copyright (c) 2019 - 2023, Nordic Semiconductor ASA
* Copyright 2024 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V.
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
Expand Down Expand Up @@ -32,18 +32,16 @@
* POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef NRFX_H__
#define NRFX_H__
#ifndef NRFX_CONFIG_H__
#define NRFX_CONFIG_H__

#include <nrfx_config.h>
#include <drivers/nrfx_common.h>
#include <nrfx_glue.h>
#undef NRFX_ATOMIC_FETCH_OR
#undef NRFX_ATOMIC_FETCH_AND
#undef nrfx_atomic_t
#include <nrfx_glue_nrf5340.h>
#include <hal/nrf_common.h>
#include <haly/nrfy_common.h>
#include <drivers/nrfx_errors.h>
#include <nrfx_config_common.h>
#if defined(NRF52840_XXAA)
#include <nrfx_config_nrf52840.h>
#elif defined(NRF5340_XXAA_APPLICATION)
#include <nrfx_config_nrf5340_application.h>
#else
#error "No config for device."
#endif

#endif // NRFX_H__
#endif // NRFX_CONFIG_H__
56 changes: 56 additions & 0 deletions third_party/nrfx-custom/nrfx_config_common.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
* Copyright (c) 2022 - 2023, Nordic Semiconductor ASA
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef NRFX_CONFIG_COMMON_H__
#define NRFX_CONFIG_COMMON_H__

#ifndef NRFX_CONFIG_H__
#error "This file should not be included directly. Include nrfx_config.h instead."
#endif

/** @brief Symbol specifying major version of the nrfx API to be used. */
#ifndef NRFX_CONFIG_API_VER_MAJOR
#define NRFX_CONFIG_API_VER_MAJOR 3
#endif

/** @brief Symbol specifying minor version of the nrfx API to be used. */
#ifndef NRFX_CONFIG_API_VER_MINOR
#define NRFX_CONFIG_API_VER_MINOR 0
#endif

/** @brief Symbol specifying micro version of the nrfx API to be used. */
#ifndef NRFX_CONFIG_API_VER_MICRO
#define NRFX_CONFIG_API_VER_MICRO 0
#endif

#endif /* NRFX_CONFIG_COMMON_H__ */
Loading
Loading