Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebase camera interface demo #3

Merged
merged 4 commits into from Oct 30, 2018
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Fix camera I2C interface

Signed-off-by: David Shah <davey1576@gmail.com>
  • Loading branch information
daveshah1 authored and elms committed Oct 29, 2018
commit a0c0e2a4858e18c86e423739502d85d5145cb1e4
@@ -121,7 +121,7 @@ module cameraif(
.PULLUP(1'b 1)
) scl_buf (
.PACKAGE_PIN(cam_sda),
.OUTPUT_ENABLE(i2c_gpio[0]),
.OUTPUT_ENABLE(!i2c_gpio[0]),
.D_OUT_0(1'b0),
.D_IN_0(i2c_din[0])
);
@@ -131,7 +131,7 @@ module cameraif(
.PULLUP(1'b 1)
) sda_buf (
.PACKAGE_PIN(cam_scl),
.OUTPUT_ENABLE(i2c_gpio[1]),
.OUTPUT_ENABLE(!i2c_gpio[1]),
.D_OUT_0(1'b0),
.D_IN_0(i2c_din[1])
);
ProTip! Use n and p to navigate between commits in a pull request.