Nordic nRF5 SDK 学习笔记之十二, nRF52840 Dongle USB 串口功能测试

样例: ~\nRF5_SDK_15.2\examples\peripheral\usbd_cdc_acm\pca10056\blank\arm5_no_packs


1. 更改编译硬件, 从 pca10056 (nRF52840 DK) 改为 pca10059 ( nRF52840 Dongle).


2. 因 pca10059.h 中没有 TX_PIN_NUMBER,RX_PIN_NUMBER 定义,故新添加定义;


NORDIC USB CDC ACM 样例参考原文:

USB CDC ACM Example

This information applies to the nRF52840 SoC only.

This example uses the USB CDC ACM module. See the documentation of this module for links to relevant specification documents.

This example shows how to use the CDC ACM USB class, commonly known as Virtual COM port. After connecting the USB cable, the development kit will enumerate as a COMx port on Windows hosts or as a /dev/ttyACMx device on Linux/Unix hosts. The port can be opened and closed just like a traditional serial port.

Windows 8 (and later) hosts will pick the correct driver (usbser.sys) automatically.

Setup

You can find the source code and the project file of the example in the following folder: <InstallFolder>\examples\peripheral\usbd_cdc_acm

LED assignments:

  • LED 1 shows the USB bus state:
    • ON: State RESUME
    • OFF: State SUSPEND
  • LED 2 shows the CDC ACM port state:
    • ON: Port opened
    • OFF: Port closed
  • LED 3 shows the CDC ACM RX notification:
    • TOGGLE: Data received
  • LED 4 shows the CDC ACM TX notification:
    • TOGGLE: Data transmitted

Button assignments:

  • Button 1 sends a CDC ACM test frame.
  • Button 2 sends a CDC ACM line notification.

Testing

Test the USB CDC ACM Example application by performing the following steps:

  1. Compile and program the application.
  2. Connect the development kit to the host computer.
  3. If you are running Windows 7, on first run CDC ACM driver installation is needed. To install the driver on Windows 7, follow these steps:
    • Open Device Manager
    • Right-click the development kit (look for the name "nRF52 ..." depending on the example)
    • Click "Update Driver Software..."
    • Click "Browse my computer for driver software"
    • Click "Browse..." and choose the folder sdk/nrf5/examples/usb_drivers
    • Click "Ok"
    • Click "Next"
    • Click "Install"
    • Click "Close"
  4. Open the serial port. In your computer's device manager, the development kit will be visible as "nRF52 USB CDC Demo (COMx)".
  5. Using a terminal emulator, for example PuTTY with the following Terminal settings, send test data from the host computer to the development kit. LED 3 will blink.
  6. Press Button 1. A test frame will be sent from the development kit. LED 4 state will change. If you are using a terminal emulator, you can see the transmitted data on it as well.

猜你喜欢

转载自blog.csdn.net/weixin_42396877/article/details/86604337