This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Running with Code Size Limit

I got a message: EVALUATION MODE Running with Code Size Limit: 32K. My program is only 4 rows.
while (1) {

/* USER CODE END WHILE */
HAL_GPIO_WritePin(GPIOB,GPIO_PIN_5,GPIO_PIN_RESET);
HAL_Delay(200);
HAL_GPIO_WritePin(GPIOB,GPIO_PIN_5,GPIO_PIN_SET);
HAL_Delay(400); /* USER CODE BEGIN 3 */

} /* USER CODE END 3 */

}
What can be done?