motorized_fader/mocks/TimerMock/TimerMock.h
jake 22c191363e Added mocks
+ ADC mocking.
+ Timer.
+ Register Editing.
2025-02-16 10:13:45 -08:00

26 lines
408 B
C

/**
* @brief A Mock of the timer module.
* @details This file is only used for testing.
* @author Jake G
* @date 2024-09-02
* @copyright None
* @file TimerMock.h
*/
#ifndef TIMER_MOCK_H
#define TIMER_MOCK_H
#include <stdint.h>
/**
* A function
* @param a The first argument
*/
void Timer_Start(void);
void Timer_Stop(void);
uint16_t Timer_GetOverflowCount(void);
#endif //TIMER_MOCK_H