From 2f565a553cdd10486b7a8e6b09ec92668ed2e0e2 Mon Sep 17 00:00:00 2001 From: Tsutomu Muroya Date: Mon, 3 Apr 2023 23:29:47 +0900 Subject: [PATCH 28/28] iccom: Change CTA size to 8kB Signed-off-by: Tsutomu Muroya --- examples/renesas/iccom/iccom_commands.h | 2 +- examples/renesas/iccom/iccom_ll.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/renesas/iccom/iccom_commands.h b/examples/renesas/iccom/iccom_commands.h index 8f4802a..a443ecc 100644 --- a/examples/renesas/iccom/iccom_commands.h +++ b/examples/renesas/iccom/iccom_commands.h @@ -24,7 +24,7 @@ enum iccom_command { ECHO, }; -#define TOTAL_CTA_SIZE 0x4000 +#define TOTAL_CTA_SIZE 0x2000 #define ICCOM_BUF_MAX_SIZE (TOTAL_CTA_SIZE/2) // Max size of each transaction (read/write) // this is the common header shared between all commands diff --git a/examples/renesas/iccom/iccom_ll.c b/examples/renesas/iccom/iccom_ll.c index e2323d9..64e0229 100644 --- a/examples/renesas/iccom/iccom_ll.c +++ b/examples/renesas/iccom/iccom_ll.c @@ -4,8 +4,8 @@ //#include "Compiler.h" #include "tpl_compiler.h" -uint32 ICCOM_CTA_MEMORY_CH0 = 0x47fc7000; -uint32 ICCOM_CTA_MEMORY_CH1 = 0x47fc9000; +uint32 ICCOM_CTA_MEMORY_CH0 = 0x47fc9000; +uint32 ICCOM_CTA_MEMORY_CH1 = 0x47fca000; void iccom_ll_init(void) { -- 2.25.1