Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform/emlib/inc/em_timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ typedef struct {
false, /* Select X2 quadrature decode mode (if used). */ \
false, /* Disable one shot. */ \
false, /* Not started/stopped/reloaded by other timers. */ \
false /* Disable ability to start/stop/reload other timers. */ \
false /* Is able to start/stop/reload other timers. */ \
}
#else
#define TIMER_INIT_DEFAULT \
Expand Down
4 changes: 2 additions & 2 deletions platform/peripheral/inc/sl_hal_timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ typedef sl_hal_timer_init_t sl_hal_timer_config_t;
(bool)_TIMER_CFG_DEBUGRUN_DEFAULT, /* Stop counter during debug halt. */ \
(bool)_TIMER_CFG_DMACLRACT_DEFAULT, /* Stop counter during debug halt. */ \
(bool)_TIMER_CFG_RETIMEEN_DEFAULT, /* Disable retime. */ \
(bool)_TIMER_CFG_DISSYNCOUT_DEFAULT, /* Disable ability to start/stop/reload other timers. */ \
(bool)_TIMER_CFG_DISSYNCOUT_DEFAULT, /* Is able to start/stop/reload other timers. */ \
(bool)_TIMER_CFG_ATI_DEFAULT, /* No ATI. */ \
(bool)_TIMER_CFG_RSSCOIST_DEFAULT, /* RSSCOIST is disabled. */ \
(bool)_TIMER_CTRL_X2CNT_DEFAULT, /* Not 2x count mode. */ \
Expand All @@ -255,7 +255,7 @@ typedef sl_hal_timer_init_t sl_hal_timer_config_t;
(bool)_TIMER_CFG_DEBUGRUN_DEFAULT, /* Stop counter during debug halt. */ \
(bool)_TIMER_CFG_DMACLRACT_DEFAULT, /* Stop counter during debug halt. */ \
(bool)_TIMER_CFG_RETIMEEN_DEFAULT, /* Disable retime. */ \
(bool)_TIMER_CFG_DISSYNCOUT_DEFAULT, /* Disable ability to start/stop/reload other timers. */ \
(bool)_TIMER_CFG_DISSYNCOUT_DEFAULT, /* Is able to start/stop/reload other timers. */ \
(bool)_TIMER_CFG_ATI_DEFAULT, /* No ATI. */ \
(bool)_TIMER_CFG_RSSCOIST_DEFAULT, /* RSSCOIST is disabled. */ \
(bool)_TIMER_CTRL_X2CNT_DEFAULT /* Not 2x count mode. */ \
Expand Down