-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathError_Code.cpp
72 lines (59 loc) · 1.65 KB
/
Error_Code.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//============================================================================
// Name : Error_Code.cpp
// Author : Abdurrahman Nurhakim
// Version : 1.1.2
// Copyright : Your copyright notice
// Description : Error Code with Flexible Input Parameter (LinkedList Based)
//============================================================================
#include "Error_Code.h"
my_typedata_16_t Value_16_bit;
ErrorCodeClass::ErrorCodeClass() {
}
struct ErrorCode* ErrorCodeClass::createErrorCodeList(int parameters[]) {
struct ErrorCode *head = NULL;
struct ErrorCode *curr = NULL;
for (int i = 0; i < SIX_TEEN_BIT; i++) {
Value_16_bit |= (parameters[i] << i);
struct ErrorCode *node = new ErrorCode { Value_16_bit, parameters[i], NULL };
if (head == NULL) {
head = node;
curr = node;
} else {
curr->next = node;
curr = node;
}
}
return head;
}
void ErrorCodeClass::ReadErrorCode(struct ErrorCode *head,
my_typedata_16_t *OutputHEXValue) {
struct ErrorCode *curr = head;
while (curr != NULL) {
*OutputHEXValue = curr->hexValue;
curr = curr->next;
}
}
void ErrorCodeClass::deleteErrorCodeList(ErrorCode *head) {
ErrorCode *curr = head;
while (curr != NULL) {
ErrorCode *temp = curr;
curr = curr->next;
Value_16_bit = 0; ///reset variable (fixed bug)
delete temp;
}
}
/**
example testing:
**/
/**
my_typedata_16_t readDEcimal;
int parameters[] = {1, 1, 1, 0, 0, 1, 0, 0};
ErrorCodeClass ErrorCode;
int main() {
struct ErrorCode* head = createErrorCodeList(parameters);
ErrorCode.ReadErrorCode(head, &readDEcimal);
ErrorCode.deleteErrorCodeList(head); //free
printf("%d", readDEcimal);
return 0;
}
**/