Arduino Nano 33 BLE sense rev2 serial Monitor in zephyr envirnoment

Hi, after uploading a Zephyr project (like the "Hello World" example), I couldn't see the device in the serial monitor. i add the below commend in overlay file also but still nothing is happening i read some document says the uart stack is not enabled in the arduino board after uploading the sample code but after enabling that also same issue i am getting. 

Board: Arduino Nano 33 BLE sense Rev2 (which has nRF52840 microcontroller in it)
Platform : nrF connect sdk in vs code and zephyr environment both i tried

overlay file:

&usbd {
status = "okay";
cdc_acm_uart {
compatible = "zephyr,cdc-acm-uart";
label = "CDC_ACM";
};
};

Need to see the serial monitor in zephyr environment using Arduino Nano33 BLE sense rev 2 board.
Parents
  • Hello,

    I saw your private message, where you asked why I mentioned the nRF52840 Dongle.

    Sorry if I was not specific. 

    The reason I mentioned the nRF52840 dongle board files (nrf52840dongle_nrf52840), is that this board, like the board that you mention, use the nRF's USB peripheral, instead of the typical UART -> Debugger -> computer, that is used in the normal DevKits.

    So the llpm sample that I mentioned in my previous reply shows how you can set up the dongle, using the nrf52840dongle_nrf52840.conf and .overlay file to redirect the console to the USB. 

    What you want to do is to create similar files, just named according to the board that you build for, to redirect your console to the USB peripheral.

    Best regards,

    Edvin

Reply
  • Hello,

    I saw your private message, where you asked why I mentioned the nRF52840 Dongle.

    Sorry if I was not specific. 

    The reason I mentioned the nRF52840 dongle board files (nrf52840dongle_nrf52840), is that this board, like the board that you mention, use the nRF's USB peripheral, instead of the typical UART -> Debugger -> computer, that is used in the normal DevKits.

    So the llpm sample that I mentioned in my previous reply shows how you can set up the dongle, using the nrf52840dongle_nrf52840.conf and .overlay file to redirect the console to the USB. 

    What you want to do is to create similar files, just named according to the board that you build for, to redirect your console to the USB peripheral.

    Best regards,

    Edvin

Children
No Data
Related