You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* This is probably being replaced at some point by __builtin__setIVTBASE() but is not currently supported */
98
113
/* This also assumes that the first block of memory in the application is the reset/ivt table which may not always be true if there is an application header */
99
114
PACCON1bits.IVTBASEWR=1;
100
115
IVTBASE=MDFU_CONFIG_APPLICATION_RESET_ADDRESS;
101
116
PACCON1bits.IVTBASEWR=0;
102
117
103
-
/* cppcheck-suppress misra-c2012-11.4
104
-
*
105
-
* (Rule 11.4) ADVISORY: A conversion should not be performed between a
106
-
* pointer to object and an integer type
107
-
*
108
-
* Reasoning: This is required for the bootloader to jump to the application
109
-
* code. The reset vector is stored at a fixed address, and this cast is
0 commit comments