From 3183d21ba7d2b38f3f37426fd002f59b98f4d58b Mon Sep 17 00:00:00 2001 From: TomoYamanaka Date: Wed, 7 Mar 2018 14:27:19 +0900 Subject: [PATCH] Fix macro definition of iodefine_typedef for RZ_A1H Regarding RZ_A1H, Since I removed the macro definition accidentally in iodefine_typedef, I fixed the lack of it. --- .../TARGET_RZ_A1H/device/inc/iodefines/iodefine_typedef.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/inc/iodefines/iodefine_typedef.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/inc/iodefines/iodefine_typedef.h index 09ad7a584b..434b931933 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/inc/iodefines/iodefine_typedef.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/inc/iodefines/iodefine_typedef.h @@ -54,7 +54,9 @@ typedef enum iodefine_byte_select_t { R_IO_L = 0, R_IO_H = 1, - R_IO_LL= 0, R_IO_LH = 1, R_IO_HL = 2, R_IO_HH = 3 + R_IO_LL= 0, R_IO_LH = 1, R_IO_HL = 2, R_IO_HH = 3, + L = 0, H = 1, + LL= 0, LH = 1, HL = 2, HH = 3 } iodefine_byte_select_t;