mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
modules/py_csi_ng: Fix printed slave address.
Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
This commit is contained in:
parent
fe1f36e867
commit
0b8607307f
@ -1307,7 +1307,7 @@ static void py_csi_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kin
|
||||
mp_printf(print, "CSI {\n");
|
||||
mp_printf(print, " Name : %s\n", omv_csi_name(csi));
|
||||
mp_printf(print, " Chip ID : 0x%04X\n", csi->chip_id);
|
||||
mp_printf(print, " Address : 0x%02X\n", csi->slv_addr);
|
||||
mp_printf(print, " Address : 0x%02X\n", csi->slv_addr >> 1);
|
||||
mp_printf(print, " Powered On : %s\n", csi->power_on ? "true" : "false");
|
||||
mp_printf(print, " Auxiliary : %s\n", csi->auxiliary ? "true" : "false");
|
||||
mp_printf(print, " Raw Output : %s\n", csi->raw_output ? "true" : "false");
|
||||
|
Loading…
Reference in New Issue
Block a user