Commit 6405f029 authored by Andrey Filippov's avatar Andrey Filippov
Browse files

debugging Boson driver, other warnings cleanup

parent 384c0d4b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -278,8 +278,8 @@
                                                   "sensor_temp    0x18 1 2 100",
                                                   "cy22393        0x69 1 1 100",
                                                   "lepton35       0x2a 2 2 500",
/*Update elphel393-sensor-i2c to support uart instead of the i2c */                
                                                   "boson640       0x2a 2 2 500";
/*Update elphel393-sensor-i2c to support uart instead of the i2c. 0x81 - 80 - extif/!i2c, 1 - extif mode,rah:2lsbs - bytes  */                
                                                   "boson640       0x81 2 2 500";
    } ;
    framepars_operations: elphel393-framepars@0 {
        compatible = "elphel,elphel393-framepars-1.00";
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ obj-$(CONFIG_ELPHEL393) += pgm_functions.o
obj-$(CONFIG_ELPHEL393)           += mt9x001.o
obj-$(CONFIG_ELPHEL393)           += mt9f002.o
obj-$(CONFIG_ELPHEL393)           += lepton.o
obj-$(CONFIG_ELPHEL393)           += boson640.o
obj-$(CONFIG_ELPHEL393)           += multi10359.o
obj-$(CONFIG_ELPHEL393)           += imu_log393.o

+1893 −0

File added.

Preview size limit exceeded, changes collapsed.

+370 −0

File added.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -489,9 +489,9 @@ int detect_sensors_par2addr_init(int port,int sub_chn){
			break;
		case SENSOR_BOSON640: // temporary, set later to actual one
			dev_warn(g_dev_ptr,"FIX temporary data in detect_sensors for Boson640\n");
			par2addr  = lepton_par2addr;
			pages     = lepton_pages;
			atab      = lepton_ahead_tab;
			par2addr  = boson640_par2addr;
			pages     = boson640_pages;
			atab      = boson640_ahead_tab;
			break;
	}
	if (par2addr){
Loading