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 2525const board_info_t g_board_info = {
2626 .info_version = kBoardInfoVersion ,
2727 .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
2929 .flags = kEnablePageErase ,
3030 .daplink_url_name = "PRODINFOHTM" ,
3131 .daplink_drive_name = "HANI_IOT" ,
Original file line number Diff line number Diff line change 2525const board_info_t g_board_info = {
2626 .info_version = kBoardInfoVersion ,
2727 .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 ,
2929 .flags = kEnablePageErase ,
3030 .daplink_url_name = "PRODINFOHTM" ,
3131 .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)
106106}
107107
108108const 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
110110 .target_set_state = lpc55s6x_target_set_state ,
111111};
112112
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;
4949extern __WEAK const target_family_descriptor_t g_nxp_kinetis_k32w_series ;
5050extern __WEAK const target_family_descriptor_t g_nxp_mimxrt ;
5151extern __WEAK const target_family_descriptor_t g_nxp_rapid_iot ;
52+ extern __WEAK const target_family_descriptor_t g_nxp_lpc55xx_series ;
5253extern __WEAK const target_family_descriptor_t g_nordic_nrf51 ;
5354extern __WEAK const target_family_descriptor_t g_nordic_nrf52 ;
5455extern __WEAK const target_family_descriptor_t g_realtek_rtl8195am ;
@@ -78,6 +79,7 @@ const target_family_descriptor_t *g_families[] = {
7879 & g_nxp_kinetis_kseries ,
7980 & g_nxp_kinetis_lseries ,
8081 & g_nxp_kinetis_k32w_series ,
82+ & g_nxp_lpc55xx_series ,
8183 & g_nxp_mimxrt ,
8284 & g_nxp_rapid_iot ,
8385 & g_nordic_nrf51 ,
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ typedef enum _family_id {
9696 kNXP_Mimxrt_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 3 ),
9797 kNXP_RapidIot_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 4 ),
9898 kNXP_KinetisK32W_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 5 ),
99+ kNXP_LPC55xx_FamilyID = VENDOR_TO_FAMILY (kNXP_VendorID , 6 ),
99100 kNordic_Nrf51_FamilyID = VENDOR_TO_FAMILY (kNordic_VendorID , 1 ),
100101 kNordic_Nrf52_FamilyID = VENDOR_TO_FAMILY (kNordic_VendorID , 2 ),
101102 kRealtek_Rtl8195am_FamilyID = VENDOR_TO_FAMILY (kRealtek_VendorID , 1 ),
You can’t perform that action at this time.
0 commit comments