From f12136af7fd8fdc48c59276f8c7532634aba9066 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Fri, 23 Sep 2022 08:54:00 -0500 Subject: [PATCH] esp32-camera: sync doc with code. Closes: #6836 --- ports/espressif/bindings/esp32_camera/Camera.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ports/espressif/bindings/esp32_camera/Camera.c b/ports/espressif/bindings/esp32_camera/Camera.c index 2f09970251..1186afc90f 100644 --- a/ports/espressif/bindings/esp32_camera/Camera.c +++ b/ports/espressif/bindings/esp32_camera/Camera.c @@ -46,9 +46,9 @@ //| self, //| *, //| data_pins: List[microcontroller.Pin], -//| pixel_clock: microcontroller.Pin, -//| vsync: microcontroller.Pin, -//| href: microcontroller.Pin, +//| pixel_clock_pin: microcontroller.Pin, +//| vsync_pin: microcontroller.Pin, +//| href_pin: microcontroller.Pin, //| i2c: busio.I2C, //| external_clock_pin: microcontroller.Pin, //| external_clock_frequency: int, @@ -79,12 +79,12 @@ //| that case. //| //| :param data_pins: The 8 data data_pins used for image data transfer from the camera module, least significant bit first -//| :param pixel_clock: The pixel clock output from the camera module -//| :param vsync: The vertical sync pulse output from the camera module -//| :param href: The horizontal reference output from the camera module +//| :param pixel_clock_pin: The pixel clock output from the camera module +//| :param vsync_pin: The vertical sync pulse output from the camera module +//| :param href_pin: The horizontal reference output from the camera module //| :param i2c: The I2C bus connected to the camera module -//| :param external_clock_frequency: The frequency generated on the external clock pin //| :param external_clock_pin: The pin on which to generate the external clock +//| :param external_clock_frequency: The frequency generated on the external clock pin //| :param powerdown_pin: The powerdown input to the camera module //| :param reset_pin: The reset input to the camera module //| :param pixel_format: The pixel format of the captured image