Skip to content

Commit

Permalink
applications: nrf_desktop: Drop support for nRF54L15 PDK v0.2.x
Browse files Browse the repository at this point in the history
Support for nRF54L15 PDK v0.2.x is no longer required. Drop it to
simplify maintenance.

Jira: NCSDK-25071

Signed-off-by: Marek Pieta <Marek.Pieta@nordicsemi.no>
  • Loading branch information
MarekPieta committed Sep 27, 2024
1 parent c6b8384 commit ed149fa
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 186 deletions.
8 changes: 1 addition & 7 deletions applications/nrf_desktop/board_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,8 @@ Sample mouse or keyboard (``nrf54l15pdk/nrf54l15/cpuapp``)
* The configuration uses the nRF54L15 Preview Development Kit (PDK).
* The build types allow to build the application as a mouse or a keyboard.
* Inputs are simulated based on the hardware button presses.
On the PDK PCA10156, revision v0.2.1, GPIOs assigned to **Button 3** and **Button 4** do not support interrupts.
Because of this, the application cannot use those buttons.
* On the nRF54L15 SoC, you can only use the **GPIO1** port for PWM hardware peripheral output.
Because of that, the PDK PCA10156 has the following limitations:

* On the PDK revision v0.2.1, **LED 1** cannot be used for PWM output.
* On the PDK revision v0.3.0, **LED 0** and **LED 2** cannot be used for PWM output.

Because of that, on the PDK PCA10156 revision v0.3.0, **LED 0** and **LED 2** cannot be used for PWM output.
You can still use these LEDs with the PWM LED driver, but you must set the LED color to ``LED_COLOR(255, 255, 255)`` or ``LED_COLOR(0, 0, 0)``.
This ensures the PWM peripheral is not used for the mentioned LEDs.
* Only Bluetooth LE transport is enabled.
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@
const struct {} hid_keyboard_leds_def_include_once;

/* On the nRF54L15 SoC, you can only use the **GPIO1** port for PWM hardware peripheral output.
* Because of that, the PDK PCA10156 has the following limitations:
*
* - On the PDK revision v0.2.1, **LED 1** cannot be used for PWM output.
* - On the PDK revision v0.3.0, **LED 0** and **LED 2** cannot be used for PWM output.
* Because of that, on the PDK PCA10156 revision v0.3.0, **LED 0** and **LED 2** cannot be used for
* PWM output.
*
* You can still use these LEDs with the PWM LED driver, but you must set the LED color to
* ``LED_COLOR(255, 255, 255)`` or ``LED_COLOR(0, 0, 0)``. This ensures the PWM peripheral is not
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ static const uint8_t led_map[LED_ID_COUNT] = {
};

/* On the nRF54L15 SoC, you can only use the **GPIO1** port for PWM hardware peripheral output.
* Because of that, the PDK PCA10156 has the following limitations:
*
* - On the PDK revision v0.2.1, **LED 1** cannot be used for PWM output.
* - On the PDK revision v0.3.0, **LED 0** and **LED 2** cannot be used for PWM output.
* Because of that, on the PDK PCA10156 revision v0.3.0 **LED 0** and **LED 2** cannot be used
* for PWM output.
*
* You can still use these LEDs with the PWM LED driver, but you must set the LED color to
* ``LED_COLOR(255, 255, 255)`` or ``LED_COLOR(0, 0, 0)``. This ensures the PWM peripheral is not
Expand Down

0 comments on commit ed149fa

Please sign in to comment.