Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable uart #540

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion boards/ssrc/saluki-pi
2 changes: 1 addition & 1 deletion boards/ssrc/saluki-v1
2 changes: 1 addition & 1 deletion boards/ssrc/saluki-v2
2 changes: 1 addition & 1 deletion boards/ssrc/saluki-v3
2 changes: 1 addition & 1 deletion platforms/nuttx/NuttX/nuttx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static char hw_info[HW_INFO_SIZE] = {0};

static mfguid_t device_serial_number = { 0 };

devinfo_t device_info __attribute__((section(".deviceinfo")));
devinfo_t device_boot_info __attribute__((section(".deviceinfo")));

static void determine_hw(void);

Expand Down Expand Up @@ -130,7 +130,7 @@ int board_mcu_version(char *rev, const char **revstr, const char **errata)

const char *board_bl_version_string(void)
{
return device_info.bl_version;
return device_boot_info.bl_version;
}

int board_get_px4_guid(px4_guid_t px4_guid)
Expand Down
Loading