You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,7 @@ Configure the following settings on the UART/Serial connection being used:
138
138
| Read Buffer Size | 512|
139
139
140
140
> [!NOTE]
141
-
> Due to the amount of information sent by the fingerprint sensor, the default size of the internal buffer used by Arduino Serial objects is rapidly exceeded. To prevent this, the buffer size must be be increased before intializing the FPC2534AP device.
141
+
> Due to the amount of information sent by the fingerprint sensor, the default size of the internal buffer used by Arduino Serial objects is rapidly exceeded. To prevent this, the buffer size must be increased before initializing the FPC2534AP device.
142
142
>
143
143
> To increase the buffer size when using a Raspberry pi RP2 Microcontroller:
144
144
>
@@ -152,7 +152,7 @@ Configure the following settings on the UART/Serial connection being used:
152
152
> Serial.setRxBufferSize(512);
153
153
> ```
154
154
155
-
If using a different controller for your project, the method used to expand the Serial read buffer will need to be determined. Some platforms (STM32 appears to selfadjust FIFO size) no additional calls are needed, but on others (normally older systems) no option exists rendering the Serial interface the FPC2543 un-usable on the platform.
155
+
If using a different controller for your project, the method used to expand the Serial read buffer will need to be determined. Some platforms (STM32 appears to self-adjust FIFO size) no additional calls are needed, but on others (normally older systems) no option exists rendering the Serial interface the FPC2543 un-usable on the platform.
156
156
157
157
To initialize the device, the Serial object used to communicate with the device is passed into the begin call.
158
158
@@ -172,11 +172,11 @@ The operational pattern for the SparkFun FPC2543 Fingerprint sensor library is o
172
172
173
173
1) The first step is library initialization and setup.
174
174
- The communication interface being used is provided to the library.
175
-
- The operationa callback functions are registered. These functions are called in reponse to commands sent to the sensor.
175
+
- The operation callback functions are registered. These functions are called in response to commands sent to the sensor.
176
176
2) The next phase normally occurs in the ```loop``` section of system operation.
177
177
3) The application makes a request/sends a command to the sensor. These calls are asynchronous, and result in a message being sent to the sensor by the library.
178
178
4) During each loop iteration, the library method ```processNextResponse()``` is called. This method will check for new messages and process any messages sent by the sensor.
179
-
5) When checking for new messages, the library gets the next message/reponse from the device via the in-use communication bus. This message is parsed, and processed.
179
+
5) When checking for new messages, the library gets the next message/response from the device via the in-use communication bus. This message is parsed and processed.
180
180
6) When a response message is parsed and identified, if the host application has registered a callback for this message type, that callback function is called.
181
181
- The user takes the desired application action in the callback function.
182
182
@@ -205,10 +205,10 @@ The operation of this mode is outlined in the following diagram:
205
205
4) Messages from the sensor are processed
206
206
5) When a navigation event message is identified, the message is parsed and the corresponding navigation event sent to the supplied ```on_navigation()``` callback function.
207
207
208
-
To further understand how to use Navigation mode, review the Navigaton examples provided with this library.
208
+
To further understand how to use Navigation mode, review the Navigation examples provided with this library.
209
209
210
210
-[Navigation using I2C](examples/Example01_NavigationI2C/Example01_NavigationI2C.ino)
211
-
-[Navigatoin using Seria](examples/Example03_NavigationUART/Example03_NavigationUART.ino)
211
+
-[Navigation using Serial](examples/Example03_NavigationUART/Example03_NavigationUART.ino)
212
212
213
213
#### Enroll a Fingerprint
214
214
@@ -220,7 +220,7 @@ This process is outlined in the following diagram:
0 commit comments