projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Make bluetooth SDP code correctly unpack the search UUIDs and parameters.
[pub/USBasp.git]
/
Demos
/
Host
/
Incomplete
/
BluetoothHost
/
BluetoothHost.c
diff --git
a/Demos/Host/Incomplete/BluetoothHost/BluetoothHost.c
b/Demos/Host/Incomplete/BluetoothHost/BluetoothHost.c
index
1107bc0
..
99c0987
100644
(file)
--- a/
Demos/Host/Incomplete/BluetoothHost/BluetoothHost.c
+++ b/
Demos/Host/Incomplete/BluetoothHost/BluetoothHost.c
@@
-206,8
+206,7
@@
void Bluetooth_Host_Task(void)
bool Bluetooth_ConnectionRequest(const uint8_t* RemoteAddress)
\r
{
\r
printf_P(PSTR("Connection Request from Device %02X:%02X:%02X:%02X:%02X:%02X\r\n"),
\r
bool Bluetooth_ConnectionRequest(const uint8_t* RemoteAddress)
\r
{
\r
printf_P(PSTR("Connection Request from Device %02X:%02X:%02X:%02X:%02X:%02X\r\n"),
\r
- RemoteAddress[5], RemoteAddress[4],
\r
- RemoteAddress[3], RemoteAddress[2],
\r
+ RemoteAddress[5], RemoteAddress[4], RemoteAddress[3], RemoteAddress[2],
\r
RemoteAddress[1], RemoteAddress[0]);
\r
\r
/* Always accept connections from remote devices */
\r
RemoteAddress[1], RemoteAddress[0]);
\r
\r
/* Always accept connections from remote devices */
\r