1.. _decawave_dwm3001cdk:
2
3Decawave DWM3001CDK
4###################
5
6Overview
7********
8
9The DWM3001CDK development board includes the DWM3001C module, battery connector
10and charging circuit, LEDs, buttons, Raspberry Pi connector, and USB connector.
11In addition, the board comes with J-Link OB adding debugging and Virtual COM
12Port capabilities.
13
14See `Qorvo (Decawave) DWM3001CDK website`_ for more information about the
15development board, `Qorvo (Decawave) DWM3001C website`_ about the module
16itself, and `nRF52833 website`_ for the official reference on the IC itself.
17
18Programming and Debugging
19*************************
20
21Applications for the ``decawave_dwm3001cdk`` board target can be built, flashed,
22and debugged in the usual way. See :ref:`build_an_application` and
23:ref:`application_run` for more details on building and running.
24
25Flashing
26========
27
28Follow the instructions in the :ref:`nordic_segger` page to install
29and configure all the necessary software. Further information can be
30found in :ref:`nordic_segger_flashing`. Then build and flash
31applications as usual (see :ref:`build_an_application` and
32:ref:`application_run` for more details).
33
34Here is an example for the :zephyr:code-sample:`hello_world` application.
35
36Connect to the bottom micro-USB port labeled as J-Link and run your favorite
37terminal program to listen for console output.
38
39.. code-block:: console
40
41   $ minicom -D <tty_device> -b 115200
42
43Replace :code:`<tty_device>` with the port where the DWM3001CDK board can be
44found. For example, under Linux, :code:`/dev/ttyACM0`.
45
46Then build and flash the application in the usual way.
47
48.. zephyr-app-commands::
49   :zephyr-app: samples/hello_world
50   :board: decawave_dwm3001cdk
51   :goals: build flash
52
53References
54**********
55.. target-notes::
56
57.. _nRF52833 website: https://www.nordicsemi.com/products/nrf52833
58.. _Qorvo (Decawave) DWM3001C website: https://www.qorvo.com/products/p/DWM3001C
59.. _Qorvo (Decawave) DWM3001CDK website: https://www.qorvo.com/products/p/DWM3001CDK
60