We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c15d0c9 commit 9a15de9Copy full SHA for 9a15de9
targets/TARGET_NXP/TARGET_LPC176X/device/CRP.c
@@ -14,5 +14,9 @@
14
* limitations under the License.
15
*/
16
#if !defined(BOOTLOADER_ADDR) // do not include CRP if there is a bootloader.
17
- long CRP_Key __attribute__((section(".ARM.__at_0x000002FC "))) = 0xFFFFFFFF;
+ #if defined (__ICCARM__)
18
+ const long CRP_Key @0x000002FC = 0xFFFFFFFF;
19
+ #else
20
+ const long CRP_Key __attribute__((section(".ARM.__at_0x000002FC "))) = 0xFFFFFFFF;
21
+ #endif
22
#endif
0 commit comments