Skip to content

Commit

Permalink
fix comments containing example arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
pmonta committed Aug 12, 2018
1 parent 23bac46 commit 726a903
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion acquire-beidou-b1cd.py
Expand Up @@ -44,7 +44,7 @@ def search(x,prn):

# parse command-line arguments
# example:
# ./acquire-beidou-b1cd.py data/gps-5001-l1_a.dat 69984000 -9334875
# ./acquire-beidou-b1cd.py /dev/stdin 69984000 -9334875

filename = sys.argv[1] # input data, raw file, i/q interleaved, 8 bit signed (two's complement)
fs = float(sys.argv[2]) # sampling rate, Hz
Expand Down
2 changes: 1 addition & 1 deletion acquire-beidou-b1cp.py
Expand Up @@ -44,7 +44,7 @@ def search(x,prn):

# parse command-line arguments
# example:
# ./acquire-beidou-b1cp.py data/gps-5001-l1_a.dat 69984000 -9334875
# ./acquire-beidou-b1cp.py /dev/stdin 69984000 -9334875

filename = sys.argv[1] # input data, raw file, i/q interleaved, 8 bit signed (two's complement)
fs = float(sys.argv[2]) # sampling rate, Hz
Expand Down
2 changes: 1 addition & 1 deletion acquire-galileo-e1c.py
Expand Up @@ -44,7 +44,7 @@ def search(x,prn):

# parse command-line arguments
# example:
# ./acquire-galileo-e1c.py data/gps-5001-l1_a.dat 68873142.857 -8662285.714
# ./acquire-galileo-e1c.py /dev/stdin 69984000 -9334875

filename = sys.argv[1] # input data, raw file, i/q interleaved, 8 bit signed (two's complement)
fs = float(sys.argv[2]) # sampling rate, Hz
Expand Down
2 changes: 1 addition & 1 deletion acquire-glonass-l3q.py
Expand Up @@ -43,7 +43,7 @@ def search(x,prn):

# parse command-line arguments
# example:
# ./acquire-glonass-l3q.py /dev/stdin 68873142.857 -3255000.000
# ./acquire-glonass-l3q.py /dev/stdin 69984000 10383375

filename = sys.argv[1] # input data, raw file, i/q interleaved, 8 bit signed (two's complement)
fs = float(sys.argv[2]) # sampling rate, Hz
Expand Down

0 comments on commit 726a903

Please sign in to comment.