@mchp-mcc/dspic33a-flash 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -100,9 +100,9 @@ void FLASH_Initialize(void)
100
100
 
101
101
  <#if interruptDriven == true>
102
102
  <#if isFlashContextSupported>
103
- void __attribute__ ( ( interrupt, no_auto_psv, context ) ) ${flashIsrHandlerName}(void)
103
+ void __attribute__ ( ( interrupt, context ) ) ${flashIsrHandlerName}(void)
104
104
  <#else>
105
- void __attribute__ ( ( interrupt, no_auto_psv ) ) ${flashIsrHandlerName}(void)
105
+ void __attribute__ ( ( interrupt ) ) ${flashIsrHandlerName}(void)
106
106
  </#if>
107
107
  {
108
108
  ${flashInterruptFlag} = 0U;