SPI Haberleşmesi

Genel Özellikleri Serial Peripheral Interface veya kısa adıyla SPI, özellikle gömülü sistemlerde kullanılan senkron ve full-duplex bir seri haberleşme protokolüdür. Senkron, haberleşmede senkronizasyonun bir clock sinyali yardımıyla yapılmasıyken, asenkron bağlantılarda bir clock sinyali bulunmaz. Full-duplex ise, half-duplex’in aksine haberleşmenin aynı anda her iki yönlü de olabileceğini ifade eder. kaynak Seri haberleşmede, veriyi oluşturan bitler sadece bir kanal üzerinden art arda gönderilir. Paralel haberleşmede birden çok kanal üzerinden veriyi oluşturan bitler aynı anda gönderilir....

March 3, 2024 · 4 min · 667 words · Hasan Enes Şimşek

STM32 FreeRTOS Config Without CMSIS

Many guides explain how to use FreeRTOS in STM32 projects without using the CMSIS wrapper library, but I still want to write one more. At first Download FreeRTOS source code from https://www.freertos.org I downloaded FreeRTOS 202112.00 Create a new STM32Cube project Don’t configure FreeRTOS with STM32Cube. This guide aims to add the FreeRTOS lib to the project manually. This way CMSIS-RTOS wrapper lib will not be used. Adding FreeRTOS lib to the project Add a new source folder “ThirdParty” to the project in STM32Cube....

October 26, 2022 · 2 min · 379 words · Hasan Enes Şimşek