[hamradio-commits] [dump1090] 277/389: Publish V1.08.2302.14
Matthew Ernisse
mernisse-guest at moszumanska.debian.org
Wed Nov 5 00:20:05 UTC 2014
This is an automated email from the git hooks/post-receive script.
mernisse-guest pushed a commit to branch master
in repository dump1090.
commit 97c7f69c83b01481df07f27a01e7b4496d86fefc
Author: Malcolm Robb <Support at ATTAvionics.com>
Date: Mon Feb 24 10:28:35 2014 +0000
Publish V1.08.2302.14
Final tidy up and publish
---
coaa1090.obj | Bin 18164 -> 18336 bytes
dump1090.c | 3 ---
dump1090.h | 10 ++++-----
makedump1090 | 2 +-
makeppup1090 | 2 +-
makeview1090 | 2 +-
net_io.c | 67 ++++++++++++++++++++++++++++++-----------------------------
7 files changed, 42 insertions(+), 44 deletions(-)
diff --git a/coaa1090.obj b/coaa1090.obj
index fcc4310..7e35631 100644
Binary files a/coaa1090.obj and b/coaa1090.obj differ
diff --git a/dump1090.c b/dump1090.c
index 6a76fdf..70a4d04 100644
--- a/dump1090.c
+++ b/dump1090.c
@@ -254,8 +254,6 @@ void rtlsdrCallback(unsigned char *buf, uint32_t len, void *ctx) {
// Lock the data buffer variables before accessing them
pthread_mutex_lock(&Modes.data_mutex);
- rtlsdrStats(buf);
-
Modes.iDataIn &= (MODES_ASYNC_BUF_NUMBER-1); // Just incase!!!
// Get the system time for this block
@@ -642,7 +640,6 @@ int main(int argc, char **argv) {
// If we lost some blocks, correct the timestamp
if (Modes.iDataLost) {
Modes.timestampBlk += (MODES_ASYNC_BUF_SAMPLES * 6 * Modes.iDataLost);
- uRtlLost+= Modes.iDataLost;
Modes.iDataLost = 0;
}
diff --git a/dump1090.h b/dump1090.h
index 3c6d41c..28d7cf3 100644
--- a/dump1090.h
+++ b/dump1090.h
@@ -37,7 +37,7 @@
// MinorVer changes when additional features are added, but not for bug fixes (range 00-99)
// DayDate & Year changes for all changes, including for bug fixes. It represent the release date of the update
//
-#define MODES_DUMP1090_VERSION "1.07.2202.14"
+#define MODES_DUMP1090_VERSION "1.08.2302.14"
// ============================= Include files ==========================
@@ -230,10 +230,10 @@ struct { // Internal state
pthread_cond_t data_cond; // Conditional variable associated
uint16_t *pData [MODES_ASYNC_BUF_NUMBER]; // Raw IQ sample buffers from RTL
struct timeb stSystemTimeRTL[MODES_ASYNC_BUF_NUMBER]; // System time when RTL passed us this block
- int iDataIn; // Fifo input pointer
- int iDataOut; // Fifo output pointer
- int iDataReady; // Fifo content count
- int iDataLost; // Count of missed buffers
+ int iDataIn; // Fifo input pointer
+ int iDataOut; // Fifo output pointer
+ int iDataReady; // Fifo content count
+ int iDataLost; // Count of missed buffers
uint16_t *pFileData; // Raw IQ samples buffer (from a File)
uint16_t *magnitude; // Magnitude vector
diff --git a/makedump1090 b/makedump1090
index 51a7756..4d3fccb 100644
--- a/makedump1090
+++ b/makedump1090
@@ -21,7 +21,7 @@ all: dump1090
$(CC) $(CFLAGS) $(EXTRACFLAGS) -c $<
dump1090: dump1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o
- $(CC) -g -o dump1090 dump1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o $(LIBS)
+ $(CC) -g -o dump1090 dump1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o $(LIBS) $(LDFLAGS)
clean:
rm -f *.o dump1090
diff --git a/makeppup1090 b/makeppup1090
index ece4450..9df60aa 100644
--- a/makeppup1090
+++ b/makeppup1090
@@ -21,7 +21,7 @@ all: ppup1090
$(CC) $(CFLAGS) $(EXTRACFLAGS) -c $<
ppup1090: ppup1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o
- $(CC) -g -o ppup1090 ppup1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o coaa1090.obj $(LIBS)
+ $(CC) -g -o ppup1090 ppup1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o coaa1090.obj $(LIBS) $(LDFLAGS)
clean:
rm -f *.o ppup1090
diff --git a/makeview1090 b/makeview1090
index 67b25a8..6cb76af 100644
--- a/makeview1090
+++ b/makeview1090
@@ -21,7 +21,7 @@ all: view1090
$(CC) $(CFLAGS) $(EXTRACFLAGS) -c $<
view1090: view1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o
- $(CC) -g -o view1090 view1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o $(LIBS)
+ $(CC) -g -o view1090 view1090.o anet.o interactive.o mode_ac.o mode_s.o net_io.o $(LIBS) $(LDFLAGS)
clean:
rm -f *.o view1090
diff --git a/net_io.c b/net_io.c
index 018c77f..684b961 100644
--- a/net_io.c
+++ b/net_io.c
@@ -146,18 +146,18 @@ void modesFreeClient(int fd) {
if (Modes.debug & MODES_DEBUG_NET)
printf("Closing client %d\n", fd);
- // If this was our maxfd, scan the clients array to find the new max.
- // Note that we are sure there is no active fd greater than the closed
+ // If this was our maxfd, scan the clients array to find trhe new max.
+ // Note that we are sure there is no active fd greater than the closed
// fd, so we scan from fd-1 to 0.
if (Modes.maxfd == fd) {
int j;
Modes.maxfd = -1;
- for (j = fd-1; j >= 0; j--) {
- if (Modes.clients[j]) {
- Modes.maxfd = j;
- break;
- }
+ for (j = fd-1; j >= 0; j--) {
+ if (Modes.clients[j]) {
+ Modes.maxfd = j;
+ break;
+ }
}
}
}
@@ -191,7 +191,7 @@ void modesSendBeastOutput(struct modesMessage *mm) {
char * pTimeStamp;
char ch;
int j;
- int iOutLen = msgLen + 9; // Escape, message type, timestamp, sigLevel and msg
+ int iOutLen = msgLen + 9; // Escape, msgtype, timestamp, sigLevel, msg
*p++ = 0x1a;
if (msgLen == MODES_SHORT_MSG_BYTES)
@@ -206,11 +206,11 @@ void modesSendBeastOutput(struct modesMessage *mm) {
pTimeStamp = (char *) &mm->timestampMsg;
for (j = 5; j >= 0; j--) {
*p++ = (ch = pTimeStamp[j]);
- if (0x1A == ch) {*p++ = ch; iOutLen++;}
+ if (0x1A == ch) {*p++ = ch; iOutLen++;}
}
*p++ = (ch = mm->signalLevel);
- if (0x1A == ch) {*p++ = ch; iOutLen++;}
+ if (0x1A == ch) {*p++ = ch; iOutLen++;}
for (j = 0; j < msgLen; j++) {
*p++ = (ch = mm->msg[j]);
@@ -368,10 +368,10 @@ void modesSendSBSOutput(struct modesMessage *mm) {
// Field 19 is the Squawk Changing Alert flag (if we have it)
if (mm->bFlags & MODES_ACFLAGS_FS_VALID) {
if ((mm->fs >= 2) && (mm->fs <= 4)) {
- p += sprintf(p, ",-1");
- } else {
+ p += sprintf(p, ",-1");
+ } else {
p += sprintf(p, ",0");
- }
+ }
} else {
p += sprintf(p, ",");
}
@@ -380,7 +380,7 @@ void modesSendSBSOutput(struct modesMessage *mm) {
if (mm->bFlags & MODES_ACFLAGS_SQUAWK_VALID) {
if ((mm->modeA == 0x7500) || (mm->modeA == 0x7600) || (mm->modeA == 0x7700)) {
p += sprintf(p, ",-1");
- } else {
+ } else {
p += sprintf(p, ",0");
}
} else {
@@ -390,10 +390,10 @@ void modesSendSBSOutput(struct modesMessage *mm) {
// Field 21 is the Squawk Ident flag (if we have it)
if (mm->bFlags & MODES_ACFLAGS_FS_VALID) {
if ((mm->fs >= 4) && (mm->fs <= 5)) {
- p += sprintf(p, ",-1");
- } else {
+ p += sprintf(p, ",-1");
+ } else {
p += sprintf(p, ",0");
- }
+ }
} else {
p += sprintf(p, ",");
}
@@ -424,17 +424,17 @@ void modesQueueOutput(struct modesMessage *mm) {
//=========================================================================
//
// This function decodes a Beast binary format message
-//
+//
// The message is passed to the higher level layers, so it feeds
// the selected screen output, the network output and so forth.
-//
+//
// If the message looks invalid it is silently discarded.
//
-// The function always returns 0 (success) to the caller as there is no
+// The function always returns 0 (success) to the caller as there is no
// case where we want broken messages here to close the client connection.
//
int decodeBinMessage(struct client *c, char *p) {
- int msgLen = 0;
+ int msgLen = 0;
int j;
char ch;
unsigned char msg[MODES_LONG_MSG_BYTES];
@@ -455,23 +455,24 @@ int decodeBinMessage(struct client *c, char *p) {
// pass them off as being received by this instance when forwarding them
mm.remote = 1;
for (j = 0; j < 7; j++) { // Skip the message type and timestamp
- ch = *p++;
- if (0x1A == ch) {p++;}
- }
+ ch = *p++;
+ if (0x1A == ch) {p++;}
+ }
+
mm.signalLevel = ch = *p++; // Grab the signal level
if (0x1A == ch) {p++;}
for (j = 0; j < msgLen; j++) { // and the data
- msg[j] = ch = *p++;
- if (0x1A == ch) {p++;}
- }
+ msg[j] = ch = *p++;
+ if (0x1A == ch) {p++;}
+ }
if (msgLen == MODEAC_MSG_BYTES) { // ModeA or ModeC
- decodeModeAMessage(&mm, ((msg[0] << 8) | msg[1]));
+ decodeModeAMessage(&mm, ((msg[0] << 8) | msg[1]));
} else {
decodeModesMessage(&mm, msg);
}
-
+
useModesMessage(&mm);
}
return (0);
@@ -850,7 +851,7 @@ void modesReadFromClient(struct client *c, char *sep,
}
// Have a 0x1a followed by 1, 2 or 3 - pass message less 0x1a to handler.
if (handler(c, s)) {
- modesFreeClient(c->fd);
+ modesFreeClient(c->fd);
return;
}
fullmsg = 1;
@@ -865,7 +866,7 @@ void modesReadFromClient(struct client *c, char *sep,
//
while ((e = strstr(s, sep)) != NULL) { // end of first message if found
*e = '\0'; // The handler expects null terminated strings
- if (handler(c, s)) { // Pass message to handler.
+ if (handler(c, s)) { // Pass message to handler.
modesFreeClient(c->fd); // Handler returns 1 on error to signal we .
return; // should close the client connection
}
@@ -873,8 +874,8 @@ void modesReadFromClient(struct client *c, char *sep,
fullmsg = 1;
}
}
-
- if (fullmsg) { // We processed something - so
+
+ if (fullmsg) { // We processed something - so
c->buflen = &(c->buf[c->buflen]) - s; // Update the unprocessed buffer length
memmove(c->buf, s, c->buflen); // Move what's remaining to the start of the buffer
} else { // If no message was decoded process the next client
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/dump1090.git
More information about the pkg-hamradio-commits
mailing list