fix warnings in sensor source

This commit is contained in:
me-no-dev
2018-11-21 11:07:52 +01:00
parent 55135e7d3e
commit f1a7c3588e
2 changed files with 4 additions and 0 deletions

View File

@@ -475,5 +475,7 @@ int ov2640_init(sensor_t *sensor)
sensor->set_lenc = set_lenc_dsp;
sensor->set_pre = set_pre_dsp;
ESP_LOGD(TAG, "OV2640 Attached");
return 0;
}

View File

@@ -305,5 +305,7 @@ int ov7725_init(sensor_t *sensor)
sensor->id.PID = SCCB_Read(sensor->slv_addr, REG_PID);
sensor->id.VER = SCCB_Read(sensor->slv_addr, REG_VER);
ESP_LOGD(TAG, "OV7725 Attached");
return 0;
}