X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Fcortex_m3.h;h=e16aa89feb96544664d4997f8e032843656341bd;hp=e1f8ef8039018f642c068cb5216f6f7dfacb6bfc;hb=ff640f197a9a343b2f3ed10e9174e35282334e8c;hpb=e53f7e5fc0d92299ee0bcc255bb8d1107a297372 diff --git a/src/target/cortex_m3.h b/src/target/cortex_m3.h index e1f8ef8039..e16aa89feb 100644 --- a/src/target/cortex_m3.h +++ b/src/target/cortex_m3.h @@ -140,6 +140,13 @@ enum cortex_m3_soft_reset_config CORTEX_M3_RESET_VECTRESET, }; +enum cortex_m3_isrmasking_mode +{ + CORTEX_M3_ISRMASK_AUTO, + CORTEX_M3_ISRMASK_OFF, + CORTEX_M3_ISRMASK_ON, +}; + struct cortex_m3_common { int common_magic; @@ -166,6 +173,8 @@ struct cortex_m3_common enum cortex_m3_soft_reset_config soft_reset_config; + enum cortex_m3_isrmasking_mode isrmasking_mode; + struct armv7m_common armv7m; };