You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2021/02/22 14:26:16 UTC

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #2892: risc-v/esp32c3: Don't reserve any vectors for any special use.

xiaoxiang781216 commented on a change in pull request #2892:
URL: https://github.com/apache/incubator-nuttx/pull/2892#discussion_r580289383



##########
File path: arch/risc-v/src/esp32c3/esp32c3_vectors.S
##########
@@ -55,20 +55,12 @@ _vector_table:
 
   j    _exception_handler
 
-  /* 29 identical entries, all pointing to the interrupt handler */
+  /* 31 identical entries, all pointing to the interrupt handler */
 
-  .rept (29)
+  .rept (31)
   j    _interrupt_handler
   .endr
 
-  /* Call panic handler for ESP32C3_CPU_INT_T1_WDT interrupt (soc-level panic)*/
-
-  j    _panic_handler
-
-  /* Call panic handler for ESP32C3_CPU_INT_CACHEERR interrupt (soc-level panic)*/
-
-  j    _panic_handler
-
 /****************************************************************************
  * Name: _panic_handler
  ****************************************************************************/

Review comment:
       let's remove the definition too




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org