2023年12月24日 星期日

[Qt] Access USB device without any USB library

Since many people have downloaded examples of controlling USB devices through libusb, I would like to provide an example that does not require libusb for everyone to reference.

1. Below is the link to the test video:


2023年9月15日 星期五

[Panel] SSD1963 Init + Show R,G,B by STM32F446

前陣子在淘寶買了一塊4.3吋的Panel, Driver IC是用SSD1963, 搭配的MCU是使用STM32F446.

讓螢幕依序顯示RED, GREEN, BLUE.


2023年1月10日 星期二

[nRF52840] How to change clock source from external 32768 to internal RC

 最近在測試一些nRF52840 BLE相關範例的時候, 總是會遇到在nRF52840 DK Board上面都正常, 但改燒錄在非原廠板子上面就會無法正常的情況.

經過確認後, 發現是因為原廠的nRF52840 DK Board上面有安裝external 32768 振盪器, 而非原廠板子因為成本的關係, 都會將32768拿掉, 因此程式都會當掉在ble stack init的時候.


因此我們必須要將clock source從外部的32768改為內部的RC.

改法如下, 先找到sdk_config.h, 並修改相關的參數.