You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Port the ISO time sync sample to 54h. This works out of the box and only
some additions are needed to the device tree configuration set up the
DPPI connection between the GRTC and the LED.
Signed-off-by: Jan Müller <[email protected]>
Copy file name to clipboardExpand all lines: samples/bluetooth/iso_time_sync/README.rst
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,9 +52,12 @@ The sample demonstrates the following features:
52
52
This allows you to measure the minimal end-to-end latency.
53
53
54
54
.. note::
55
-
This sample requires less hardware resources when it is run on an nRF54L Series device compared to the nRF52 or nRF53 Series devices.
56
-
On an nRF54L Series device, only one GRTC channel and PPI channel is needed to set up accurate toggling of an LED.
57
-
On nRF52 and nRF53 Series devices, you also need one RTC peripheral, one TIMER peripheral, one EGU channel, three PPI channels, and one PPI group.
55
+
This sample requires fewer hardware resources when it is run on an nRF54 Series device compared to the nRF52 or nRF53 Series devices.
56
+
57
+
* On an nRF54L Series device, only one GRTC channel and one DPPI channel are needed to set up accurate toggling of an LED.
58
+
* On an nRF54H Series device, only one GRTC channel and two local DPPI channels are needed to connect the GRTC and the LED to the local PPIB instances.
59
+
Additionally, a PPIB channel is used to connect the two PPIB instances.
60
+
* On nRF52 and nRF53 Series devices, you need one RTC peripheral, one TIMER peripheral, one EGU channel, four PPI channels, and one PPI group.
58
61
59
62
Configuration
60
63
*************
@@ -209,7 +212,7 @@ The sample code is divided into multiple source files, which makes it easier to
209
212
These files allow the application to read the current timestamp and set up a PPI trigger at a given point in time.
210
213
211
214
The implementation for nRF52 and nRF53 Series devices is implemented by shadowing an RTC peripheral combined with a timer peripheral.
212
-
The implementation for nRF54L Series devices uses the GRTC and is simpler to use.
215
+
The implementation for nRF54 Series devices uses the GRTC and is simpler to use.
213
216
214
217
.. group-tab:: nRF54 DKs
215
218
@@ -286,7 +289,7 @@ The sample code is divided into multiple source files, which makes it easier to
286
289
These files allow the application to read the current timestamp and set up a PPI trigger at a given point in time.
287
290
288
291
The implementation for nRF52 and nRF53 Series devices is implemented by shadowing an RTC peripheral combined with a timer peripheral.
289
-
The implementation for nRF54L Series devices uses the GRTC and is simpler to use.
292
+
The implementation for nRF54 Series devices uses the GRTC and is simpler to use.
0 commit comments