Skip to content

Commit 960d9fa

Browse files
committed
move files around
1 parent ad7764b commit 960d9fa

File tree

6 files changed

+10
-19
lines changed

6 files changed

+10
-19
lines changed

hw/bsp/ra/boards/ra6m5_ek/fsp_cfg/r_ioport_cfg.h

Lines changed: 0 additions & 7 deletions
This file was deleted.

hw/bsp/ra/boards/ra6m5_ek/fsp_cfg/vector_data.h

Lines changed: 0 additions & 5 deletions
This file was deleted.

hw/bsp/ra/family.c

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,16 @@
5353
#define BSP_PRV_PRCR_PRC1_UNLOCK ((BSP_PRV_PRCR_KEY) | 0x2U)
5454
#define BSP_PRV_PRCR_LOCK ((BSP_PRV_PRCR_KEY) | 0x0U)
5555

56-
/* ISR prototypes */
56+
static const ioport_cfg_t family_pin_cfg = {
57+
.number_of_pins = sizeof(board_pin_cfg) / sizeof(ioport_pin_cfg_t),
58+
.p_pin_cfg_data = board_pin_cfg,
59+
};
60+
static ioport_instance_ctrl_t port_ctrl;
61+
62+
//--------------------------------------------------------------------+
63+
// Vector Data
64+
//--------------------------------------------------------------------+
65+
5766
void usbfs_interrupt_handler(void);
5867
void usbfs_resume_handler(void);
5968
void usbfs_d0fifo_handler(void);
@@ -72,12 +81,6 @@ const bsp_interrupt_event_t g_interrupt_event_link_select[BSP_ICU_VECTOR_MAX_ENT
7281
[3] = BSP_PRV_IELS_ENUM(EVENT_USBFS_FIFO_1) /* USBFS FIFO 1 (DMA transfer request 1) */
7382
};
7483

75-
static const ioport_cfg_t family_pin_cfg = {
76-
.number_of_pins = sizeof(board_pin_cfg) / sizeof(ioport_pin_cfg_t),
77-
.p_pin_cfg_data = board_pin_cfg,
78-
};
79-
static ioport_instance_ctrl_t port_ctrl;
80-
8184
//--------------------------------------------------------------------+
8285
// Board porting API
8386
//--------------------------------------------------------------------+

0 commit comments

Comments
 (0)