11 lines
311 B
C
11 lines
311 B
C
#include "mocks.h"
|
|
|
|
// Mock implementation of Task_sleep
|
|
void Task_sleep(unsigned int ticks) {
|
|
// This is a mock, so we do nothing.
|
|
// In a real scenario, you might use a platform-specific sleep function.
|
|
}
|
|
|
|
// Mock definitions for global variables
|
|
Semaphore_Handle spi_semaphore;
|
|
Swi_Handle swi_notify; |