Hi grobasoz,
In an environment where Python, PlatformIO, and nRFConnect are mixed within VSCode, it took me, who is not good at software, three days of struggle to be able to build the sample. Next, I will start uploading, but I wanted to get some information in advance so that everything would go smoothly.
I can understand what you are saying. I am quite confused by the NRF Development Process. Another user asked “the experts” for help and was told to “watch the training videos”
I have developed NRF52 products for a customer in the past but I used Segger Embedded Studio.
The NRF installation in VSCode took many hours to install, and failed a few times so I ended up using “nrfutil”. After all that I still can’t get the Zigbee applications working
I find the Silabs’ Simplicity Studio development much easier.
Awesome my guy, it is New and does require some different methods , there is several but NOT unreasonable IMHO
which BTW , up until now with the seeed wiki, the Nordic Dev academy VIDEOS, Was and IS the defacto source for the information
in a different thread about the MCU boot and builds, Some folks just don’t comprehend the information that way and ARE quite confused I’m guessing.
Great you used USB too. WOW imagine that ? without the “experts” help or watching a video
I wasn’t familiar with how to use VSCode, so I was quite confused. Instead of reading the documentation, I used ChatGPT as a search tool. After repeating Q&A and trial and error, I was finally able to upload.
Writing code seems to be much more difficult than with Arduino.
It would be a great help to all of us “Nordic Noobs” to have a “tutorial” on the development of VSCode based Nordic software applications on the NRF54L15 since you’re the resident “expert”?
Wading through all the (generally outdated) Nordic training videos is far too time consuming, especially when we have someone like you who is so knowledgeable on everything Nordic
For instance.
I have an NRF54L15 based device and would like to create a Zigbee+BLE multiprotocol RGBW Lighting application that works with Philips Hue.
Perhaps you could “enlighten” us on the development process?
if you can get it to build with the board defs with west build… the next step is
“west build”
“west flash”
other useful commands:
“nrfutil install device”
“nrfutil device list”
I also used Zadig to install winusb over the default windows serial drivers, and installed the j-link usb drivers. now I have an nrf54l15 that identifies as “YOUR MOTHER” over bluetooth to the nrfconnect app on my phone.
(it’s running the perihperial_NUS uart service)
when i send a message over bluetooth, i can see it in the nrf’s terminal session over usbserial. YAY.
if somone writes a FLPR driver for ws2812 for this beast I’ll but them a beer.
Indeed, this new XIAO is quite different from the traditional XIAO ESP32 and XIAO RP2040. The chip lacks a USB interface, so programs can only be uploaded to it via the SWD interface!
Therefore, we use the SAMD11 as a bridge. The XIAO nRF54L15 is essentially a product combining USB + DAPLink + nRF54L15, which makes its programming and usage methods somewhat unconventional.