File tree Expand file tree Collapse file tree 6 files changed +16
-2
lines changed Expand file tree Collapse file tree 6 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ RUN [ "cross-build-start" ]
6
6
7
7
# labeling
8
8
LABEL maintainer=
"[email protected] " \
9
- version="V0.9.1.0 " \
9
+ version="V0.9.2 " \
10
10
description="Debian(jessie) with netX real-time ethernet programming examples"
11
11
12
12
# version
13
- ENV HILSCHERNETPI_NETX_PROGRAMMING_EXAMPLES_VERSION 0.9.1.0
13
+ ENV HILSCHERNETPI_NETX_PROGRAMMING_EXAMPLES_VERSION 0.9.2
14
14
15
15
# install ssh, gcc, create user "pi" and make him sudo
16
16
RUN apt-get update \
Original file line number Diff line number Diff line change @@ -59,3 +59,8 @@ typedef struct APP_DATA_Ttag {
59
59
APP_OUTPUT_DATA_T tOutputData ;
60
60
} APP_DATA_T ;
61
61
62
+ uint32_t Protocol_SendFirstPacket (APP_DATA_T * ptAppData );
63
+ uint32_t Protocol_SendLastPacket (APP_DATA_T * ptAppData );
64
+ uint32_t Protocol_PacketHandler ( APP_DATA_T * ptAppData );
65
+
66
+
Original file line number Diff line number Diff line change @@ -73,4 +73,7 @@ int32_t Sys_SetMacAddressCnf(CIFX_PACKET* ptSetMacAddressCnf);
73
73
int32_t Sys_FirmwareIdentifyCnf (CIFX_PACKET * ptFirmwareIdentifyCnf );
74
74
int32_t Sys_HardwareInfoCnf (CIFX_PACKET * ptCnf );
75
75
76
+ void DumpData (unsigned char * pbData , unsigned long ulDataLen );
77
+ void DumpPacket (CIFX_PACKET * ptPacket );
78
+
76
79
#endif /** COMPONENTS_CIFXAPPLICATIONDEMO_INCLUDES_SYSTEMPACKETS_H_ */
Original file line number Diff line number Diff line change 25
25
26
26
Version Date Author Description
27
27
-------------------------------------------------------------------------------------
28
+ 9 22.06.2018 AB - add function prototypes to prevent compiler warnings
28
29
8 05.01.2018 AB - new netx driver 1.1.3
29
30
7 17.11.2017 AB - copying controller outputs to inputs correctly
30
31
6 26.07.2017 AB - clear receive mailbox before starting initialization
55
56
#include <termios.h>
56
57
#include <unistd.h>
57
58
#include <sys/mman.h>
59
+ #include <sys/stat.h>
58
60
#include <time.h>
59
61
60
62
Original file line number Diff line number Diff line change 27
27
28
28
Version Date Author Description
29
29
----------------------------------------------------------------------------------
30
+ 9 22.06.2018 AB - add function prototypes to prevent compiler warnings
30
31
8 05.01.2018 AB - new netx driver 1.1.3
31
32
7 17.11.2017 AB - copying controller outputs to inputs correctly
32
33
6 26.07.2017 AB - clear receive mailbox before starting initialization
57
58
#include <termios.h>
58
59
#include <unistd.h>
59
60
#include <sys/mman.h>
61
+ #include <sys/stat.h>
60
62
#include <time.h>
61
63
62
64
Original file line number Diff line number Diff line change 27
27
28
28
Version Date Author Description
29
29
----------------------------------------------------------------------------------
30
+ 9 22.06.2018 AB - add function prototypes to prevent compiler warnings
30
31
8 05.01.2018 AB - new netx driver 1.1.3
31
32
7 17.11.2017 AB - copying controller outputs to inputs correctly
32
33
6 26.07.2017 AB - clear receive mailbox before starting initialization
57
58
#include <termios.h>
58
59
#include <unistd.h>
59
60
#include <sys/mman.h>
61
+ #include <sys/stat.h>
60
62
#include <time.h>
61
63
62
64
You can’t perform that action at this time.
0 commit comments