Skip to content
Snippets Groups Projects
Commit 34c63ff1 authored by burneykb's avatar burneykb
Browse files

Added debug packet handling in accordance to the quad

parent a18ae6b3
No related branches found
No related tags found
No related merge requests found
...@@ -824,6 +824,10 @@ static void quad_recv() { ...@@ -824,6 +824,10 @@ static void quad_recv() {
respBufLen -= packetlen; respBufLen -= packetlen;
switch (m.msg_type) { switch (m.msg_type) {
case DEBUG_ID:
/* in case of debug. Quad send null terminated string in data */
printf(" (Quad) : %s\n", data);
break;
case LOG_ID: case LOG_ID:
if (!quadlog_file_open) { if (!quadlog_file_open) {
char log_file[256]; char log_file[256];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment