projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Minor documentation enhancements.
[pub/USBasp.git]
/
Demos
/
Host
/
Incomplete
/
BluetoothHost
/
Lib
/
RFCOMM.c
diff --git
a/Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c
b/Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c
index
f74002a
..
2638dee
100644
(file)
--- a/
Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c
+++ b/
Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c
@@
-65,7
+65,7
@@
const uint8_t CRC8_Table[256] PROGMEM =
RFCOMM_Channel_t RFCOMM_Channels[RFCOMM_MAX_OPEN_CHANNELS];
RFCOMM_Channel_t RFCOMM_Channels[RFCOMM_MAX_OPEN_CHANNELS];
-/** Initiali
z
es the RFCOMM service, ready for new connections from a SDP client. */
+/** Initiali
s
es the RFCOMM service, ready for new connections from a SDP client. */
void RFCOMM_Initialize(void)
{
/* Reset the RFCOMM channel structures, to invalidate any configured RFCOMM channels */
void RFCOMM_Initialize(void)
{
/* Reset the RFCOMM channel structures, to invalidate any configured RFCOMM channels */
@@
-263,7
+263,7
@@
uint16_t RFCOMM_GetVariableFieldValue(const uint8_t** BufferPos)
(*BufferPos)++;
}
(*BufferPos)++;
}
- /* Bitshift the bytes that comprise the variable length field so that they form a single integer */
+ /* Bit
-
shift the bytes that comprise the variable length field so that they form a single integer */
return (((uint16_t)SecondOctet << 7) | FirstOctet >> 1);
}
return (((uint16_t)SecondOctet << 7) | FirstOctet >> 1);
}