<option id="com.renesas.cdt.core.Compiler.option.warning30.1994659686" name="Issue Warning about c and ansi c construct incompatibility(-Wtraditional)" superClass="com.renesas.cdt.core.Compiler.option.warning30" value="false" valueType="boolean"/>\r
<option id="com.renesas.cdt.core.Compiler.option.warning31.531473224" name="Give string constants the type 'const char[length]'(-Wwrite-strings)" superClass="com.renesas.cdt.core.Compiler.option.warning31" value="false" valueType="boolean"/>\r
<option id="com.renesas.cdt.core.Compiler.option.CPUSeries.114360178" name="Cpu Series" superClass="com.renesas.cdt.core.Compiler.option.CPUSeries"/>\r
+ <option id="com.renesas.cdt.rz.HardwareDebug.Compiler.option.optimizationLevel.2026925660" name="Optimization Level" superClass="com.renesas.cdt.rz.HardwareDebug.Compiler.option.optimizationLevel" value="com.renesas.cdt.rz.HardwareDebug.Compiler.option.optimizationLevel.speedCodeSize" valueType="enumerated"/>\r
<inputType id="%Base.Compiler.C.InputType.Id.321945067" name="C Input" superClass="%Base.Compiler.C.InputType.Id"/>\r
<inputType id="Base.Compiler.CPP.InputType.Id.678276075" name="C++ Input" superClass="Base.Compiler.CPP.InputType.Id"/>\r
</tool>\r
<configuration id="com.renesas.cdt.rz.hardwaredebug.win32.configuration.Id.137003302" name="HardwareDebug">\r
<extension point="org.eclipse.cdt.core.LanguageSettingsProvider">\r
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>\r
- <provider class="com.renesas.cdt.common.build.spec.RZGCCBuiltinSpecsDetector" console="false" env-hash="-542772021278886125" id="RZGCCBuiltinSpecsDetector" keep-relative-paths="false" name="Renesas GNUARM-NONE GCCBuildinCompilerSettings" options-hash="857384749" parameter="arm-none-eabi-gcc -E -P -v -dD ${INPUTS}" prefer-non-shared="true">\r
+ <provider class="com.renesas.cdt.common.build.spec.RZGCCBuiltinSpecsDetector" console="false" env-hash="1695716901026871493" id="RZGCCBuiltinSpecsDetector" keep-relative-paths="false" name="Renesas GNUARM-NONE GCCBuildinCompilerSettings" options-hash="857384749" parameter="arm-none-eabi-gcc -E -P -v -dD ${INPUTS}" prefer-non-shared="true">\r
<language-scope id="org.eclipse.cdt.core.gcc"/>\r
<language-scope id="org.eclipse.cdt.core.g++"/>\r
</provider>\r
***********************************************************************************************************************/\r
static void reset_check(void)\r
{\r
- volatile uint8_t result;\r
- volatile uint32_t dummy;\r
+ volatile uint8_t result=0;\r
+ volatile uint32_t dummy=0;\r
\r
UNUSED_VARIABLE(result);\r
UNUSED_VARIABLE(dummy);\r
***********************************************************************************************************************/\r
static void cpg_init(void)\r
{\r
- volatile uint32_t dummy; \r
+ volatile uint32_t dummy=0;\r
\r
UNUSED_VARIABLE(dummy);\r
\r
***********************************************************************************************************************/\r
void R_ATCM_WaitSet(uint32_t atcm_wait)\r
{\r
- volatile uint32_t dummy; \r
+ volatile uint32_t dummy=0;\r
\r
UNUSED_VARIABLE(dummy);\r
\r
***********************************************************************************************************************/\r
void R_RAM_WriteEnable(void)\r
{\r
- volatile uint32_t dummy; \r
+ volatile uint32_t dummy=0;\r
\r
UNUSED_VARIABLE(dummy);\r
\r
***********************************************************************************************************************/\r
void R_RAM_WriteDisable(void)\r
{\r
- volatile uint32_t dummy; \r
+ volatile uint32_t dummy=0;\r
\r
UNUSED_VARIABLE(dummy);\r
\r
***********************************************************************************************************************/\r
void r_rst_write_enable(void)\r
{\r
- volatile uint32_t dummy; \r
+ volatile uint32_t dummy=0;\r
\r
UNUSED_VARIABLE(dummy);\r
\r
***********************************************************************************************************************/\r
void r_rst_write_disable(void)\r
{\r
- volatile uint32_t dummy; \r
+ volatile uint32_t dummy=0;\r
\r
UNUSED_VARIABLE(dummy);\r
\r
* In addition to the standard demo tasks, the following tasks and tests are\r
* defined and/or created within this file:\r
*\r
- * FreeRTOS+CLI command console. For reasons of robustness testing the UART\r
- * driver is deliberately written to be inefficient and should not be used as a\r
- * template for a production driver. Type "help" to see a list of registered\r
- * commands. The FreeRTOS+CLI license is different to the FreeRTOS license, see\r
- * http://www.FreeRTOS.org/cli for license and usage details. The default baud\r
- * rate is 115200.\r
- *\r
* "Reg test" tasks - These fill both the core and floating point registers with\r
* known values, then check that each register maintains its expected value for\r
* the lifetime of the task. Each task uses a different set of values. The reg\r
static void prvRegTestTaskEntry2( void *pvParameters );\r
extern void vRegTest2Implementation( void );\r
\r
-/*\r
- * Register commands that can be used with FreeRTOS+CLI. The commands are\r
- * defined in CLI-Commands.c and File-Related-CLI-Command.c respectively.\r
- */\r
-extern void vRegisterSampleCLICommands( void );\r
-\r
-/*\r
- * The task that manages the FreeRTOS+CLI input and output.\r
- */\r
-extern void vUARTCommandConsoleStart( uint16_t usStackSize, UBaseType_t uxPriority );\r
-\r
/*\r
* A high priority task that does nothing other than execute at a pseudo random\r
* time to ensure the other test tasks don't just execute in a repeating\r
vStartTaskNotifyTask();\r
vStartInterruptSemaphoreTasks();\r
\r
-\r
- /* Start the tasks that implements the command console on the UART, as\r
- described above. */\r
-#warning CLI is commented out\r
-// vUARTCommandConsoleStart( mainUART_COMMAND_CONSOLE_STACK_SIZE, mainUART_COMMAND_CONSOLE_TASK_PRIORITY );\r
-\r
- /* Register the standard CLI commands. */\r
-// vRegisterSampleCLICommands();\r
-\r
/* Create the register check tasks, as described at the top of this file */\r
xTaskCreate( prvRegTestTaskEntry1, "Reg1", configMINIMAL_STACK_SIZE, mainREG_TEST_TASK_1_PARAMETER, tskIDLE_PRIORITY, NULL );\r
xTaskCreate( prvRegTestTaskEntry2, "Reg2", configMINIMAL_STACK_SIZE, mainREG_TEST_TASK_2_PARAMETER, tskIDLE_PRIORITY, NULL );\r
***********************************************************************************************************************/\r
void R_MPC_WriteEnable(void)\r
{\r
- volatile uint8_t dummy; \r
+ volatile uint8_t dummy=0;\r
\r
UNUSED_VARIABLE(dummy);\r
\r
***********************************************************************************************************************/\r
void R_MPC_WriteDisable(void)\r
{\r
- volatile uint8_t dummy; \r
+ volatile uint8_t dummy=0;\r
\r
UNUSED_PARAM(dummy);\r
\r