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

Fix OEM enum to avoid error in c2a-enum loader #153

Merged
merged 1 commit into from
Aug 4, 2023
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
6 changes: 3 additions & 3 deletions src/src_user/Drivers/Aocs/oem7600.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ typedef enum
OEM7600_TLM_ID_BEST_XYZ = 0x000000F1, // cmd/log manual 3.21項
OEM7600_TLM_ID_HARDWARE_MONITOR = 0x000003C3, // cmd/log manual 3.76項
// 仕様書上はbinary/asciiで同一IDだが、CMD引数にIDを使うために、binary系列ID + 0x1000をascii系列として定義する
OEM7600_TLM_ID_RANGE_ASCII = OEM7600_TLM_ID_RANGE + 0x1000,
OEM7600_TLM_ID_BEST_XYZ_ASCII = OEM7600_TLM_ID_BEST_XYZ + 0x1000,
OEM7600_TLM_ID_HARDWARE_MONITOR_ASCII = OEM7600_TLM_ID_HARDWARE_MONITOR + 0x1000
OEM7600_TLM_ID_RANGE_ASCII = 0x0000102B,
OEM7600_TLM_ID_BEST_XYZ_ASCII = 0x000010F1,
OEM7600_TLM_ID_HARDWARE_MONITOR_ASCII = 0x000013C3

} OEM7600_TLM_ID;

Expand Down
Loading