diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-13 14:04:02 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-13 14:04:02 -0500 |
commit | 2a5cde336bd55fdc07cf0293d36fb854c2313811 (patch) | |
tree | 7fb0d1119ac01fb623112b5db22c99407543521c /include | |
parent | 6daa05332016d1410036f465f317ce463c5a3ac6 (diff) |
Address review comments
Diffstat (limited to 'include')
-rw-r--r-- | include/librfu.h | 2 | ||||
-rw-r--r-- | include/link_rfu.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/librfu.h b/include/librfu.h index cf409ca69..1b8e6573f 100644 --- a/include/librfu.h +++ b/include/librfu.h @@ -616,7 +616,7 @@ u16 rfu_changeSendTarget(u8 connType, u8 slotStatusIndex, u8 bmNewTgtSlot); // Functions for sending/receiving data to RFU // Data transmission -void rfu_REQ_sendData(u8 clockChangeFlag); +void rfu_REQ_sendData(bool8 clockChangeFlag); // Used only by parent device. Resend previous sent data (packet) void rfu_REQ_PARENT_resumeRetransmitAndChange(void); // Read receive data diff --git a/include/link_rfu.h b/include/link_rfu.h index e3b2243b9..8ee7674cf 100644 --- a/include/link_rfu.h +++ b/include/link_rfu.h @@ -55,11 +55,11 @@ struct UnkRfuStruct_1 /* 0x020 */ const u16 *unk_20; /* 0x024 */ u8 unk_24; /* 0x026 */ u16 unk_26; - /* 0x028 */ u16 unk_28[4]; + /* 0x028 */ u16 unk_28[RFU_CHILD_MAX]; /* 0x030 */ u8 unk_30; // aligned /* 0x032 */ u16 unk_32; - /* 0x034 */ u16 unk_34[4]; + /* 0x034 */ u16 unk_34[RFU_CHILD_MAX]; /* 0x03c */ const struct UnkLinkRfuStruct_02022B2C *unk_3c; /* 0x040 */ void (*unk_40)(u8, u8); /* 0x044 */ void (*unk_44)(u16); |