Skip to content

Commit a1d248c

Browse files
committed
Correct typos in comments and documentation
1 parent 3a97c86 commit a1d248c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/CameraCaptureRawBytes/CameraCaptureRawBytes.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
OV767X - Camera Capture Raw Bytes
33
44
This sketch reads a frame from the OmniVision OV7670 camera
5-
and writes the bytes to the Serial port. Use the Procesing
5+
and writes the bytes to the Serial port. Use the Processing
66
sketch in the extras folder to visualize the camera output.
77
88
Circuit:

src/OV767X.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ int OV767X::bytesPerPixel() const
210210
// Optimized Data Reading Explanation:
211211
//
212212
// In order to keep up with the data rate of 5 FPS, the inner loop that reads
213-
// data from the camera board needs to be as quick as possible. The 64Mhz ARM
213+
// data from the camera board needs to be as quick as possible. The 64 Mhz ARM
214214
// Cortex-M4 in the Nano 33 would not be able to keep up if we read each bit
215215
// one at a time from the various GPIO pins and combined them into a byte.
216216
// Instead, we chose specific GPIO pins which all occupy a single GPIO "PORT"

0 commit comments

Comments
 (0)