Skip to content
Snippets Groups Projects
Commit a934d6e3 authored by David Sidrane's avatar David Sidrane Committed by Beat Küng
Browse files

samv7:Fixed incorrect index populating px4_guid

parent 03948c1a
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ int board_get_px4_guid(px4_guid_t px4_guid)
uint8_t *pb = (uint8_t *) &px4_guid[0];
*pb++ = (soc_arch_id >> 8) & 0xff;
*pb++ = (soc_arch_id & 0xff);
board_get_uuid(&px4_guid[4]);
board_get_uuid(pb);
return PX4_GUID_BYTE_LENGTH;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment