lobaro / FreeRTOS-rust

Rust crate for FreeRTOS
MIT License
326 stars 55 forks source link

Use FreeRtosSemaphoreHandle for semaphore functions #54

Closed schteve closed 1 year ago

schteve commented 1 year ago

shim.rs has a bunch of semaphore functions that use FreeRtosQueueHandle instead of FreeRtosSemaphoreHandle. It's the same underlying type so it should be a non-functional change to switch over.

Also review other types to see if there are others that could be improved.

agerasev commented 1 year ago

Opened a PR for semaphore and mutex functions: #56