Skip to content

Commit

Permalink
Fix nasa#2, nasa#3, nasa#48, nasa#80, General Upgrade
Browse files Browse the repository at this point in the history
Major rewrite -
Fix nasa#2: Added 64-bit support
Added big endian payload options (use when LE selected to write BE fields)
Fix nasa#3: Added checksum calculation/overide
Added the rest of the override possible fields (for error checking)
Fix nasa#48: Added standard type options (more clear/consistant sizing)
Fix nasa#80: Added cFS Version 2 header support
Added protocol options
Added raw message generation support
Added test script
Added debug and thirtytwo build options
  • Loading branch information
skliper committed May 26, 2020
1 parent dae41fa commit 4d812ea
Show file tree
Hide file tree
Showing 3 changed files with 810 additions and 401 deletions.
8 changes: 7 additions & 1 deletion Subsystems/cmdUtil/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
all::
all:
gcc -o cmdUtil SendUdp.c cmdUtil.c

debug:
gcc -o cmdUtil -DDEBUG -g SendUdp.c cmdUtil.c

thirtytwo:
gcc -o cmdUtil -DDEBUG -g -m32 SendUdp.c cmdUtil.c

Loading

0 comments on commit 4d812ea

Please sign in to comment.