From 93ce32f70fd6337b98f574ed2aecc284b2c50881 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 13 Dec 2024 14:35:04 +0100 Subject: [PATCH] chore: remove test sdram allocation --- src/main.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main.c b/src/main.c index 5de4468..ca94901 100644 --- a/src/main.c +++ b/src/main.c @@ -325,12 +325,6 @@ void main() fmc_t fmc; init_fmc(&fmc); - uint8_t* sdram_data = (uint8_t*)fmc_sdram_allocate(&fmc, SDRAM_BANK2, 1024); - - for (uint32_t i = 0; i < 1024; i++) { - *(sdram_data + i) = i; - } - // Pins init pin_init(&led1, LED1_GPIO, LED1_PIN); pin_into_output_pushpull(&led1); -- 2.48.1