diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-02 07:05:34 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-02 07:05:34 +0000 |
commit | c362709a1e2b0252cffbf1633f7cce41fea4d769 (patch) | |
tree | cbe6188d1b4e00c42045d2318964cceebedee91a /LUFA | |
parent | da51c1f9749842b65608d6505a41b05981416443 (diff) | |
download | lufa-c362709a1e2b0252cffbf1633f7cce41fea4d769.tar.gz lufa-c362709a1e2b0252cffbf1633f7cce41fea4d769.tar.bz2 lufa-c362709a1e2b0252cffbf1633f7cce41fea4d769.zip |
The SDP UUID lists should be searched and ALL UUIDs matched for a record to be retrieved, not partial matches. Change the SDP code so that the entire list must be matched against a service attribute table's contents before it is returned.
Change matching algorithm so that it recursively searches through the entire attribute table, and not just pre-specified sequence attributes.
Add browse lists and proper descriptions to the Serial Port service.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Common/Common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index 76307d7e9..14473cddc 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -111,7 +111,7 @@ "Assertion \"%s\" failed.\r\n"), \ __FILE__, __func__, __LINE__, #x); } \ }MACROE - + /* Inline Functions: */ /** Function to reverse the individual bits in a byte - i.e. bit 7 is moved to bit 0, bit 6 to bit 1, * etc. |