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
Branches
Tags
No related merge requests found
......@@ -99,14 +99,14 @@
* uint8_t WritePacket[3] = {0x01, 0x02, 0x03};
*
* 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
* uint8_t InternalReadAddress = 0xDC;
* uint8_t ReadPacket[3];
*
* TWI_ReadPacket(0xA0, 10, &InternalReadAddress, sizeof(InternalReadAddress),
* &ReadPacket, sizeof(ReadPacket);
* ReadPacket, sizeof(ReadPacket);
* \endcode
*
* @{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment