Hi, I'm relatively new to Nordic microcontrollers and have recently completed the beginner's course. Sorry in advance if I made an obvious mistake.
I am currently trying to use the nRF52dk (nrf52832) to display any words on the Waveshare 2.42-inch OLED Module. From the manufacturer, it seems it uses the SSD1309 instead of the popular SSD1306, and it comes with the SPI configuration. The screen is 128x64. I tried using the CFB and LVGL sample. For the CFB example, I use this as the device overlay and put it in the boards folder.
boards/nrf52dk_nrf52832.overlay
I added the shield in the CMakeLists.txt
I did not change the sample main.c code from the "cfb" sample.
This is what is printed once it is successfully built and flashed, but the device does not turn on.
Initialized ssd1306@0
font width 10, font height 16
font width 15, font height 24
font width 20, font height 32
x_res 128, y_res 64, ppt 8, rows 8, cols 128
I am using the nRF Connect VScode extension and SDK v3.0.0
I used Kconfig.ssd1306 from zephyr. I am not sure if this is the correct way to approach Kconfig.
Please let me know if more details need to be provided, as I am new to the embedded world.