@@ -27,16 +27,15 @@ class TimerF3xx : public Timer {
2727 /* *
2828 * Will initialize the timer device on the STM with the given period and the given IRQ Handler
2929 * that triggers with the given period. Starts the timer
30- * @param timerPeripheral[in] The timer peripheral to configure. Possible options for this board are
31- * TIM2, TIM15, TIM16, TIM17. It is up to the user to verify that resource conflicts
32- * do not occur.
3330 *
31+ * @param timerPeripheral[in] The timer peripheral to configure. Possible options for this board are
32+ * TIM1, TIM2, TIM15, TIM16, TIM17. It is up to the user to verify that resource conflicts do not occur.
3433 * @param[in] timerPeripheral The timer to use
35- * @param[in] clockPeriod the clock period in ticks (ms when using AUTO_PRESCALER). An interrupt will be triggered
34+ * @param[in] clockPeriod The clock period in ticks (ms when using AUTO_PRESCALER). An interrupt will be triggered
3635 * at this frequency.
37- * @param[in] configuration the configuration tells the timer how to configure itself. Defaults to @ref
36+ * @param[in] configuration The configuration tells the timer how to configure itself. Defaults to @ref
3837 * TimerF3xx::defaultConfig.
39- * @param[in] clockPrescaler the prescaler that the clock will use. If clockPrescaler is set to @ref AUTO_PRESCALER,
38+ * @param[in] clockPrescaler The prescaler that the clock will use. If clockPrescaler is set to @ref AUTO_PRESCALER,
4039 * this function will calculate its own prescaler value.
4140 */
4241 explicit TimerF3xx (TIM_TypeDef* timerPeripheral, uint32_t clockPeriod,
@@ -95,8 +94,10 @@ class TimerF3xx : public Timer {
9594
9695 /* *
9796 * Handles the initialization of the timer module. Actually configures the device and enables it.
98- * @param[in] timerPeripheral The timer peripheral to configure. Possible options for this board are
99- * TIM2, TIM15, TIM16, TIM17. It is up to the user to verify that resource conflicts do not occur.
97+ *
98+ * @param timerPeripheral[in] The timer peripheral to configure. It is up to the user to verify that resource conflicts do not occur.
99+ * F334 Valid Options: TIM1, TIM2, TIM3, TIM15, TIM16, TIM17.
100+ * F3O2 Valid Options: TIM1, TIM2, TIM15, TIM16, TIM17.
100101 * @param[in] clockPeriod the clock period in ticks (ms when using AUTO_PRESCALER). An interrupt will be triggered
101102 * at that frequency.
102103 * @param[in] clockPrescaler the prescaler that the clock will use. If clockPrescaler is set to @ref AUTO_PRESCALER,
0 commit comments