File tree Expand file tree Collapse file tree 5 files changed +6
-3
lines changed Expand file tree Collapse file tree 5 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 25
25
const board_info_t g_board_info = {
26
26
.info_version = kBoardInfoVersion ,
27
27
.board_id = "0360" ,
28
- .family_id = VENDOR_TO_FAMILY ( kNXP_VendorID , 0 ) , //ID not maching the predefined family ids
28
+ .family_id = kNXP_LPC55xx_FamilyID , //ID not maching the predefined family ids
29
29
.flags = kEnablePageErase ,
30
30
.daplink_url_name = "PRODINFOHTM" ,
31
31
.daplink_drive_name = "HANI_IOT" ,
Original file line number Diff line number Diff line change 25
25
const board_info_t g_board_info = {
26
26
.info_version = kBoardInfoVersion ,
27
27
.board_id = "0236" ,
28
- .family_id = VENDOR_TO_FAMILY ( kNXP_VendorID , 0 ), //ID not maching the predefined family ids
28
+ .family_id = kNXP_LPC55xx_FamilyID ,
29
29
.flags = kEnablePageErase ,
30
30
.daplink_url_name = "PRODINFOHTM" ,
31
31
.daplink_drive_name = "LPC55S69" ,
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ static uint8_t lpc55s6x_target_set_state(target_state_t state)
106
106
}
107
107
108
108
const target_family_descriptor_t g_target_family_lpc55S6X = {
109
- .family_id = VENDOR_TO_FAMILY ( kNXP_VendorID , 0 ) , //ID not maching the predefined family ids
109
+ .family_id = kNXP_LPC55xx_FamilyID , //ID not maching the predefined family ids
110
110
.target_set_state = lpc55s6x_target_set_state ,
111
111
};
112
112
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ extern __WEAK const target_family_descriptor_t g_nxp_kinetis_lseries;
49
49
extern __WEAK const target_family_descriptor_t g_nxp_kinetis_k32w_series ;
50
50
extern __WEAK const target_family_descriptor_t g_nxp_mimxrt ;
51
51
extern __WEAK const target_family_descriptor_t g_nxp_rapid_iot ;
52
+ extern __WEAK const target_family_descriptor_t g_nxp_lpc55xx_series ;
52
53
extern __WEAK const target_family_descriptor_t g_nordic_nrf51 ;
53
54
extern __WEAK const target_family_descriptor_t g_nordic_nrf52 ;
54
55
extern __WEAK const target_family_descriptor_t g_realtek_rtl8195am ;
@@ -78,6 +79,7 @@ const target_family_descriptor_t *g_families[] = {
78
79
& g_nxp_kinetis_kseries ,
79
80
& g_nxp_kinetis_lseries ,
80
81
& g_nxp_kinetis_k32w_series ,
82
+ & g_nxp_lpc55xx_series ,
81
83
& g_nxp_mimxrt ,
82
84
& g_nxp_rapid_iot ,
83
85
& g_nordic_nrf51 ,
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ typedef enum _family_id {
96
96
kNXP_Mimxrt_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 3 ),
97
97
kNXP_RapidIot_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 4 ),
98
98
kNXP_KinetisK32W_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 5 ),
99
+ kNXP_LPC55xx_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 6 ),
99
100
kNordic_Nrf51_FamilyID = VENDOR_TO_FAMILY (kNordic_VendorID , 1 ),
100
101
kNordic_Nrf52_FamilyID = VENDOR_TO_FAMILY (kNordic_VendorID , 2 ),
101
102
kRealtek_Rtl8195am_FamilyID = VENDOR_TO_FAMILY (kRealtek_VendorID , 1 ),
You can’t perform that action at this time.
0 commit comments