QuantumLeaps / Super-Simple-Tasker

Event-driven, preemptive, priority-based, hardware RTOS for ARM Cortex-M.
MIT License
155 stars 33 forks source link

SST_Task_lock/unlock prototype should be exported in sst_port.h #3

Closed prasadghole closed 1 year ago

prasadghole commented 1 year ago

Locking scheduler task experimental functions SST_Task_lock/unlock should be added to sst_port.h for arm as this is giving warnings for implicit function in STM32 IDE.

quantum-leaps commented 1 year ago

The prototypes of the scheduler locking functions (SST_Task_lock() and SST_Task_unlock()) are provided in the sst.h header file. Providing them again in the sst_port.h header file would be superfluous. I'm not sure why your STM32Cube project gives warnings. Please check your settings.

--MMS

prasadghole commented 1 year ago

Checked and fixed the issue. Thank You.