Skip to content

Commit

Permalink
First commit of newgui branch. This branch will be a semi-major rewri…
Browse files Browse the repository at this point in the history
…te of the receiver code in preparation for implementation on a pc104 platform.
  • Loading branch information
Gregory W Heckler committed May 6, 2009
1 parent 1d31fca commit f9d5381
Show file tree
Hide file tree
Showing 87 changed files with 2,545 additions and 21,145 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ EXTRAS= gps-usrp \
TEST = simd-test \
fft-test \
acq-test

all: $(EXE)
@echo ---- Build Complete ----

extras: guiclean $(EXTRAS)

Expand Down
60 changes: 0 additions & 60 deletions accessories/fft.h

This file was deleted.

2 changes: 2 additions & 0 deletions acquisition/gen_fft_codes.m → accessories/gen_fft_codes.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@
fp = fopen('prn_codes.h','wt');

% Write out the values
fprintf(fp,'#ifndef PRN_CODES_H_\n');
fprintf(fp,'int16 PRN_Codes[208896] = {');
for(lcv = 1:length(prn_i)-1)
fprintf(fp,'%0d,%0d,\n',prn_r(lcv),prn_i(lcv));
end
lcv = lcv+1;
fprintf(fp,'%0d,%0d};',prn_r(lcv),prn_i(lcv));
fprintf(fp,'#endif\n');
fprintf(fp,'\n\n\n');
fclose(fp);
3 changes: 2 additions & 1 deletion acquisition/prn_codes.h → accessories/prn_codes.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#ifndef PRN_CODES
int16 PRN_Codes[208896] = {11,0,
-90,-89,
-85,45,
Expand Down Expand Up @@ -104446,5 +104447,5 @@ int16 PRN_Codes[208896] = {11,0,
-128,-73,
77,-126,
109,-18};

#endif

File renamed without changes.
Loading

0 comments on commit f9d5381

Please sign in to comment.