Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert work #135

Merged
merged 38 commits into from
Nov 18, 2017
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
0cca8a8
first attempt: registry functions for conversion routines
coburnw Jul 8, 2017
02a4fb3
add to library
coburnw Jul 8, 2017
d444669
tester and sample conversion functions for concept tests.
coburnw Jul 8, 2017
44adcd0
add exception test
coburnw Aug 15, 2017
9834aa7
catch exception to prevent travis failure
coburnw Aug 15, 2017
04827b1
added conversion primatives
coburnw Aug 18, 2017
8d5098c
rough out a device buffer simulator
coburnw Aug 20, 2017
447a3a9
remove buffersim from travis list
coburnw Aug 20, 2017
4767f4c
Fix pass by ref/value error
coburnw Aug 30, 2017
7f75c0a
add debug symbols
coburnw Sep 1, 2017
93f5c7a
add a couple dummy primatives
coburnw Sep 1, 2017
35a9a65
added getStreamFormats and getNativeStreamFormat
coburnw Sep 1, 2017
e1cd42a
enable c++11
coburnw Sep 7, 2017
8ae1cc0
simplify for loops using c+=11 constructs
coburnw Sep 7, 2017
f90dfc4
assign attribution
coburnw Sep 7, 2017
19246ea
clean up includes
coburnw Sep 7, 2017
74edab2
add priority selection to function api
coburnw Sep 8, 2017
33d4e30
exercise priority selection
coburnw Sep 8, 2017
eb21eae
transition from function format to object format
coburnw Sep 12, 2017
54fd972
exercise ConverterRegistry class
coburnw Sep 12, 2017
d486cc1
refine namespaces
coburnw Sep 13, 2017
9b9c2b2
removed most exceptions, added soapy logging.
coburnw Sep 15, 2017
19b9f00
exercise logging
coburnw Sep 15, 2017
8dcc980
Added DefaultConverters class wrapped in a Soapy Module
coburnw Sep 20, 2017
e250301
exercise registry via Soapy API
coburnw Sep 20, 2017
59984e8
smartened up ConverterRegistry destructor
coburnw Sep 22, 2017
d40ef1b
fix odd double declaration and resultant need for a casting
coburnw Sep 23, 2017
9c8a404
convert from module to built-in
coburnw Sep 25, 2017
ee872c0
build test out of tree, delete devel folder.
coburnw Sep 26, 2017
4337560
convert to static member functions
coburnw Oct 4, 2017
0adfed0
remove Convert.*pp
coburnw Oct 4, 2017
0a6fa0f
remove destructor
coburnw Oct 8, 2017
aa658bb
flesh out converters
coburnw Oct 14, 2017
9c252bc
remove debug prints
coburnw Oct 16, 2017
2a9c10b
add real format converters
coburnw Oct 18, 2017
6f765a1
cleanup error messages
coburnw Oct 19, 2017
1f56c63
add cs8/cu8 converters. fix cut and paste error.
coburnw Oct 19, 2017
2a66d82
scaled floats to +/-1.0.
coburnw Oct 22, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ install(DIRECTORY include/SoapySDR DESTINATION include)
########################################################################
add_subdirectory(lib)
add_subdirectory(apps)
add_subdirectory(devel)
add_subdirectory(tests)
add_subdirectory(docs)

Expand Down
Loading