More general 'stm32_timer_t'

This commit is contained in:
Scott Lahteine 2019-07-10 03:41:50 -05:00
parent 828cc71847
commit f7de453da8
4 changed files with 8 additions and 8 deletions

View file

@ -19,8 +19,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
#include "HAL.h"
@ -38,7 +38,7 @@
// Private Variables
// ------------------------
stm32f4_timer_t TimerHandle[NUM_HARDWARE_TIMERS];
stm32_timer_t TimerHandle[NUM_HARDWARE_TIMERS];
// ------------------------
// Public functions

View file

@ -128,13 +128,13 @@ extern void Temp_Handler(stimer_t *htim);
// Types
// ------------------------
typedef stimer_t stm32f4_timer_t;
typedef stimer_t stm32_timer_t;
// ------------------------
// Public Variables
// ------------------------
extern stm32f4_timer_t TimerHandle[];
extern stm32_timer_t TimerHandle[];
// ------------------------
// Public functions

View file

@ -39,7 +39,7 @@
// Private Variables
// ------------------------
stm32f4_timer_t TimerHandle[NUM_HARDWARE_TIMERS];
stm32_timer_t TimerHandle[NUM_HARDWARE_TIMERS];
// ------------------------
// Public functions

View file

@ -80,16 +80,16 @@
TIM_HandleTypeDef handle;
uint32_t callback;
} tTimerConfig;
typedef tTimerConfig stm32f4_timer_t;
typedef tTimerConfig stm32_timer_t;
#else
typedef stimer_t stm32f4_timer_t;
typedef stimer_t stm32_timer_t;
#endif
// ------------------------
// Public Variables
// ------------------------
extern stm32f4_timer_t TimerHandle[];
extern stm32_timer_t TimerHandle[];
// ------------------------
// Public functions