I successfully ran the sample code with FreeRTOS on Microsoft Visual Studio, but I encountered problems when trying to reconfigure it to support Rate Monotonic Scheduling (RMF) and Earliest Deadline First (EDF) scheduling. It doesn’t work . is there a detailed guide on how to properly reconfigure FreeRTOS for RMF and EDF?"
FreeRTOS is inherently a strict priority scheduler, and doesn’t know about “rate” or “deadline”, so it can’t do those form of scheduling. For Rate Monotonic Scheduling, you could just manually assign priorities based on the rate.