Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nrfconnect/sdk-nrf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1d681c1f819a78dc7b160b0be7ee72af09b7301c
Choose a base ref
..
head repository: nrfconnect/sdk-nrf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2f958a2784b4a8fbe7d74521e1454e5f8907c332
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 applications/sdp/mspi/src/main.c
4 changes: 2 additions & 2 deletions applications/sdp/mspi/src/main.c
Original file line number Diff line number Diff line change
@@ -322,11 +322,11 @@ static void config_pins(nrfe_mspi_pinctrl_soc_pin_msg_t *pins_cfg)
xfer_params.tx_direction_mask = 0;
xfer_params.rx_direction_mask = 0;

for (uint8_t i = 0; i < pins_cfg->pins_count; i++) {
for (uint8_t i = 0; i < DATA_PINS_MAX; i++) {
data_vios[i] = UINT8_MAX;
}

for (uint8_t i = 0; i < NRFE_MSPI_PINS_MAX; i++) {
for (uint8_t i = 0; i < pins_cfg->pins_count; i++) {
uint32_t psel = NRF_GET_PIN(pins_cfg->pin[i]);
uint32_t fun = NRF_GET_FUN(pins_cfg->pin[i]);