Merge branch 'docs/fix_intr_num_hlinterrupts_doc' into 'master'

docs(interrupts): fix wrong high-level interrupt level num in doc

Closes IDF-10445

See merge request espressif/esp-idf!32284
This commit is contained in:
Liu Xiao Yu 2024-07-25 16:32:31 +08:00
commit d2cb23c28a
2 changed files with 4 additions and 4 deletions

View File

@ -77,8 +77,8 @@ Using these symbols is done by creating an assembly file with suffix ``.S`` and
.. code-block:: none .. code-block:: none
.section .iram1,"ax" .section .iram1,"ax"
.global xt_highint5 .global xt_highint4
.type xt_highint5,@function .type xt_highint4,@function
.align 4 .align 4
xt_highint5: xt_highint5:
... your code here ... your code here

View File

@ -77,8 +77,8 @@ Xtensa 架构支持 32 个中断处理程序,这些中断分为从 1 到 7 的
.. code-block:: none .. code-block:: none
.section .iram1,"ax" .section .iram1,"ax"
.global xt_highint5 .global xt_highint4
.type xt_highint5,@function .type xt_highint4,@function
.align 4 .align 4
xt_highint5: xt_highint5:
... your code here ... your code here