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

Report reason for stream stop (HW errors) #7278

Merged
merged 2 commits into from
Sep 8, 2020
Merged
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
14 changes: 12 additions & 2 deletions src/l500/l500-private.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,12 @@ namespace librealsense
depth_stream_soft_error,
temp_warning,
temp_critical,
DFU_error
DFU_error,
fall_detected = 12,
ld_alarm = 14,
hard_error = 15,
ld_alarm_hard_error = 16,
pzr_vbias_exceed_limit = 17
};

// Elaborate FW XU report.
Expand All @@ -254,11 +259,16 @@ namespace librealsense
{ overflow_infrared, "Overflow occur on infrared stream" },
{ overflow_depth, "Overflow occur on depth stream" },
{ overflow_confidence, "Overflow occur on confidence stream" },
{ depth_stream_hard_error, "Stream stoped. \nNon recoverable. power reset may help" },
{ depth_stream_hard_error, "Receiver light saturation, stream stopped for 1 sec" },
{ depth_stream_soft_error, "Error that may be overcome in few sec. \nStream stoped. May be recoverable" },
{ temp_warning, "Warning, temperature close to critical" },
{ temp_critical, "Critical temperature reached" },
{ DFU_error, "DFU error" },
{ fall_detected, "Fall detected stream stopped" },
{ ld_alarm, "Fatal error accrue (14)" },
{ hard_error, "Fatal error accrue (15)" },
{ ld_alarm_hard_error, "Fatal error accrue (16)" },
{ pzr_vbias_exceed_limit, "Fatal error accrue (17)" },
};

#pragma pack(push, 1)
Expand Down