Software timer mode

枚举值:
LOS_SWTMR_MODE_ONCE  One-off software timer
LOS_SWTMR_MODE_PERIOD  Periodic software timer
LOS_SWTMR_MODE_NO_SELFDELETE  One-off software timer, but not self-delete
LOS_SWTMR_MODE_OPP  After the one-off timer finishes timing, the periodic software timer is enabled.

This mode is not supported temporarily.

在文件los_swtmr.h256行定义。

00257 {
00258     LOS_SWTMR_MODE_ONCE,                 /**< One-off software timer */
00259     LOS_SWTMR_MODE_PERIOD,               /**< Periodic software timer */
00260     LOS_SWTMR_MODE_NO_SELFDELETE,        /**< One-off software timer, but not self-delete */
00261     LOS_SWTMR_MODE_OPP,                  /**< After the one-off timer finishes timing, the periodic software timer is enabled. This mode is not supported temporarily.*/
00262 };