aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/serial_number_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* uhd: improved handling of empty serial number hintsMatthew Crymble2020-06-261-0/+3
| | | | | This allows device::find() calls to proceed even when encountering an empty/invalid serial number or serial number device argument hint.
* fixup! uhd: Add fuzzy serial number checkingmattprost2020-04-091-8/+8
|
* uhd: Add fuzzy serial number checkingLane Kolbly2020-04-081-0/+22
We have integer 32-bit serial numbers for MPM devices, for example "1234abcd". For serial numbers which have less than eight digits, e.g. "123abcd", a user may feel inclined to prefix this number with a 0 when they are searching for devices, e.g. "0123abcd". This change makes it so that specifying "0123abcd" will match a device with serial number "123ABCD".