Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,15 @@ insmod gm2d.ko
#insmod flcd200-common.ko
#insmod flcd200-pip.ko output_type=0 fb0_fb1_share=1 # CVBS display

#run_mode=0 | #run_mode=7 is for all
#run_mode=0x01 is for Keypad, analog read, etc
#run_mode=0x02 is for battery voltage
#run_mode=0x04 is for CVBS detection
# check if /dev/sar_adc_drv exists, if not, load sar_adc module
if ! test -e /dev/sar_adc_drv ; then
insmod sar_adc.ko run_mode=4 #run_mode=4 is for CVBS out
insmod sar_adc.ko run_mode=1
elif test -w /sys/module/sar_adc_drv/parameters/run_mode; then
echo 4 > /sys/module/sar_adc_drv/parameters/run_mode
echo 1 > /sys/module/sar_adc_drv/parameters/run_mode
fi

insmod fe_common.ko
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ CAPTURE_MAX_FPS = 25


[SNAPSHOT]
YUV_MAX_WIDTH = 640
YUV_MAX_HEIGHT = 360
MAX_BITSTREAM_SIZE = 262144
YUV_MAX_WIDTH = 1280
YUV_MAX_HEIGHT = 720
MAX_BITSTREAM_SIZE = 1048544

;Only for 8135
[RESERVED_BUFFER]
Expand Down
Loading