mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-02-23 02:25:39 -05:00
Baseline new RX projects before refining and tidying them up.
This commit is contained in:
parent
87243e4a16
commit
e5c8119b96
105 changed files with 631 additions and 126 deletions
|
|
@ -246,6 +246,26 @@ const uint32_t ulEnableRegisterWrite = 0xA50BUL, ulDisableRegisterWrite = 0xA500
|
|||
/* Reneable register protection. */
|
||||
SYSTEM.PRCR.WORD = ulDisableRegisterWrite;
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
#ifdef __ICCRX__
|
||||
|
||||
#include <intrinsics.h>
|
||||
|
||||
/* Called from the C start up code when compiled with IAR. */
|
||||
#pragma diag_suppress = Pm011
|
||||
int __low_level_init(void)
|
||||
#pragma diag_default = Pm011
|
||||
{
|
||||
extern void R_Systeminit( void );
|
||||
|
||||
__disable_interrupt();
|
||||
R_Systeminit();
|
||||
|
||||
return (int)(1U);
|
||||
}
|
||||
|
||||
#endif /* __ICCRX__ */
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue