Skip to content
Snippets Groups Projects
Commit af725dd4 authored by Dean Camera's avatar Dean Camera
Browse files

Fix TWI peripheral driver example code in the library documentation.

parent 9708b45e
No related branches found
No related tags found
No related merge requests found
...@@ -99,14 +99,14 @@ ...@@ -99,14 +99,14 @@
* uint8_t WritePacket[3] = {0x01, 0x02, 0x03}; * uint8_t WritePacket[3] = {0x01, 0x02, 0x03};
* *
* TWI_WritePacket(0xA0, 10, &InternalWriteAddress, sizeof(InternalWriteAddress), * TWI_WritePacket(0xA0, 10, &InternalWriteAddress, sizeof(InternalWriteAddress),
* &WritePacket, sizeof(WritePacket); * WritePacket, sizeof(WritePacket);
* *
* // Start a read session to device at address 0xA0, internal address 0xDC with a 10ms timeout * // Start a read session to device at address 0xA0, internal address 0xDC with a 10ms timeout
* uint8_t InternalReadAddress = 0xDC; * uint8_t InternalReadAddress = 0xDC;
* uint8_t ReadPacket[3]; * uint8_t ReadPacket[3];
* *
* TWI_ReadPacket(0xA0, 10, &InternalReadAddress, sizeof(InternalReadAddress), * TWI_ReadPacket(0xA0, 10, &InternalReadAddress, sizeof(InternalReadAddress),
* &ReadPacket, sizeof(ReadPacket); * ReadPacket, sizeof(ReadPacket);
* \endcode * \endcode
* *
* @{ * @{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment