Skip to content
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
2 changes: 1 addition & 1 deletion softperipheral/include/softperipheral_regif.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/* Shared between Host and Service, varies between platforms. */
#if defined (NRF54L05_XXAA) || defined (NRF54L09_ENGA_XXAA) || defined (NRF54L10_XXAA) || \
defined (NRF54L15_XXAA) || defined (NRF54LM20A_ENGA_XXAA) || \
defined (NRF54L15_XXAA) || defined (NRF54LM20A_ENGA_XXAA) || \
defined (NRF54LV10A_XXAA) || defined (NRF54LM20A_XXAA)
#define SP_VPR_EVENT_IDX 20
#define NRF_VPR NRF_VPR00
Expand Down
532 changes: 532 additions & 0 deletions softperipheral/sCAN/include/hal/nrf_can.h

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions softperipheral/sCAN/include/nrf54l/scan_firmware.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright (c) 2025 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

#ifndef SCAN_FIRMWARE_H__
#define SCAN_FIRMWARE_H__
#include "scan_firmware_v0.1.0.h"
#define SOFTPERIPHERAL_META_HEADER_VERSION 2
#endif
1,208 changes: 1,208 additions & 0 deletions softperipheral/sCAN/include/nrf54l/scan_firmware_v0.1.0.h

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions softperipheral/sCAN/include/nrf_config_scan.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Copyright (c) 2025 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

#ifndef NRF_SCAN_CONFIG_H__
#define NRF_SCAN_CONFIG_H__

/**
* @brief NRF_SCAN_ENABLED
*
* Boolean. Accepted values: 0 and 1.
*/
#ifndef NRF_SCAN_ENABLED
#define NRF_SCAN_ENABLED 0
#endif

/**
* ,* @brief NRF_SCAN_RXFILTER_MAX_BUFFER_SIZE ,*
* ,* Integer value. Maximum size of the RXFILTER buffer
* ,*/
#ifndef NRF_SCAN_RXFILTER_MAX_BUFFER_SIZE
#define NRF_SCAN_RXFILTER_MAX_BUFFER_SIZE 4
#endif // NRF_SCAN_RXFILTER_MAX_BUFFER_SIZE

Check warning on line 25 in softperipheral/sCAN/include/nrf_config_scan.h

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Convert this C99/C++ (// ...) style comment into a C90 (/* ... */) one.

See more on https://sonarcloud.io/project/issues?id=nrfconnect_sdk-nrfxlib&issues=AZ1oRQA3W1UJYRtxevoS&open=AZ1oRQA3W1UJYRtxevoS&pullRequest=2065

/**
* @brief NRF_SCAN_MAX_DATA_LENGTH
*
* Integer value. Maximum number of bytes to send in a TX attempt
*/
#ifndef NRF_SCAN_MAX_DATA_LENGTH
#define NRF_SCAN_MAX_DATA_LENGTH 8
#endif // NRF_SCAN_MAX_DATA_LENGTH

Check warning on line 34 in softperipheral/sCAN/include/nrf_config_scan.h

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Convert this C99/C++ (// ...) style comment into a C90 (/* ... */) one.

See more on https://sonarcloud.io/project/issues?id=nrfconnect_sdk-nrfxlib&issues=AZ1oRQA3W1UJYRtxevoT&open=AZ1oRQA3W1UJYRtxevoT&pullRequest=2065

#endif // NRF_SCAN_CONFIG_H__

Check warning on line 36 in softperipheral/sCAN/include/nrf_config_scan.h

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Convert this C99/C++ (// ...) style comment into a C90 (/* ... */) one.

See more on https://sonarcloud.io/project/issues?id=nrfconnect_sdk-nrfxlib&issues=AZ1oRQA3W1UJYRtxevoU&open=AZ1oRQA3W1UJYRtxevoU&pullRequest=2065
Loading
Loading