@@ -286,7 +286,7 @@ void irq_set_mask_n_enabled(uint n, uint32_t mask, bool enabled);
286
286
* This method will assert if there is already any sort of interrupt handler installed
287
287
* for the specified irq number.
288
288
*
289
- * NOTE: By default, the SDK uses a single shared vector table per core , and the current installed
289
+ * NOTE: By default, the SDK uses a single shared vector table for both cores , and the currently installed
290
290
* IRQ handlers are effectively a linked list starting a vector table entry for a particular IRQ number.
291
291
* Therefore, this method (when using the same vector table for both cores) sets the same interrupt handler
292
292
* for both cores.
@@ -309,7 +309,7 @@ void irq_set_mask_n_enabled(uint n, uint32_t mask, bool enabled);
309
309
* NOTE: It is not thread safe to add/remove/handle IRQs for the same irq number in the same vector table
310
310
* from both cores concurrently.
311
311
*
312
- * NOTE: The SDK defines a PICO_VTABLE_PER_CORE variable indicating whether the two vector tables are separate,
312
+ * NOTE: The SDK has a PICO_VTABLE_PER_CORE define indicating whether the two vector tables are separate,
313
313
* however as of version 2.1.1 the user cannot set this value, and expect the vector table duplication to be handled
314
314
* for them. This functionality will be added in a future SDK version
315
315
*
@@ -343,7 +343,7 @@ irq_handler_t irq_get_exclusive_handler(uint num);
343
343
* the (total across all IRQs on both cores) maximum (configurable via PICO_MAX_SHARED_IRQ_HANDLERS) number of shared handlers
344
344
* would be exceeded.
345
345
*
346
- * NOTE: By default, the SDK uses a single shared vector table per core, and the current installed
346
+ * NOTE: By default, the SDK uses a single shared vector table for both core, and the currently installed
347
347
* IRQ handlers are effectively a linked list starting a vector table entry for a particular IRQ number.
348
348
* Therefore, this method (when using the same vector table for both cores) add the same interrupt handler
349
349
* for both cores.
0 commit comments