diff --git a/platform/emlib/inc/em_timer.h b/platform/emlib/inc/em_timer.h index ef14751f07..3c9a857525 100644 --- a/platform/emlib/inc/em_timer.h +++ b/platform/emlib/inc/em_timer.h @@ -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 \ diff --git a/platform/peripheral/inc/sl_hal_timer.h b/platform/peripheral/inc/sl_hal_timer.h index 1b297b1a0c..93e6603b6f 100644 --- a/platform/peripheral/inc/sl_hal_timer.h +++ b/platform/peripheral/inc/sl_hal_timer.h @@ -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. */ \ @@ -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. */ \