]> granicus.if.org Git - esp-idf/commitdiff
fix typo
authorJoveToo <johan@verrept.eu>
Sun, 24 Dec 2017 15:42:00 +0000 (16:42 +0100)
committerAngus Gratton <gus@projectgus.com>
Tue, 2 Jan 2018 23:51:34 +0000 (10:51 +1100)
Merges https://github.com/espressif/esp-idf/pull/1429

docs/api-reference/system/esp_timer.rst

index 3e0b8c8f81ffdfd69e65f2f86ae7ea68e59e8345..53c07a1b8f410f0c0f77a3d6632ee0a22c5984e9 100644 (file)
@@ -6,7 +6,7 @@ Overview
 
 Although FreeRTOS provides software timers, these timers have a few limitations:
 
-- Mmaximum resolution is equal to RTOS tick period
+- Maximum resolution is equal to RTOS tick period
 - Timer callbacks are dispatched from a low-priority task
 
 Hardware timers are free from both of the limitations, but often they are less convenient to use. For example, application components may need timer events to fire at certain times in the future, but the hardware timer only contains one "compare" value used for interrupt generation. This means that some facility needs to be built on top of the hardware timer to manage the list of pending events can dispatch the callbacks for these events as corresponding hardware interrupts happen.