IXUS 115 HS / ELPH 100 HS request - page 50 - DryOS Development - CHDK Forum
supplierdeeply

IXUS 115 HS / ELPH 100 HS request

  • 538 Replies
  • 226428 Views
*

Online reyalp

  • ******
  • 14117
Re: IXUS 115 HS / ELPH 100 HS request
« Reply #490 on: 20 / October / 2012, 20:03:19 »
Advertisements
I've managed to fix the extra long exposure problem. The code for the extra long exposure mod was never called from exp_drv_task(), why i don't know.
I've replaced exp_drv_task() with the one from my firmware and now it works.
Tested with 1.01b and 1.01c
The modified capt_seq.c is attached
Thanks for doing this. It looks like the change that matters is the incorrect usage of sub_ (jump to firmware) for what should be loc_  (jump within local asm code) in exp_drv_task. There were some other changes in your file, but I don't think they are needed.

I've checked in this change for all three firmware versions into the trunk in changeset 2224, if you can verify it works on your cam, that would be appreciated.  You can also just try this capt_seq.c in your own build.
Don't forget what the H stands for.

Re: IXUS 115 HS / ELPH 100 HS request
« Reply #491 on: 20 / October / 2012, 21:31:22 »
I've tested the firmware in trunk 2224 and it works! An exposure of 203 sec took 203 sec (or there about) and wasn't cut short at 64 sec ;)
Thanks!
Will the patch for the video time limit make it to the trunk soon?

*

Online reyalp

  • ******
  • 14117
Re: IXUS 115 HS / ELPH 100 HS request
« Reply #492 on: 20 / October / 2012, 21:39:54 »
I've tested the firmware in trunk 2224 and it works! An exposure of 203 sec took 203 sec (or there about) and wasn't cut short at 64 sec ;)
Thanks for verifying, I'll merge it over to the stable branch.
Quote
Will the patch for the video time limit make it to the trunk soon?
I don't think the situation has changed since I made this post http://chdk.setepontos.com/index.php?topic=650.msg91947#msg91947
Don't forget what the H stands for.

Re: IXUS 115 HS / ELPH 100 HS request
« Reply #493 on: 23 / October / 2012, 14:30:44 »
How can I make script using this information? Can you give litle exampl?
Quote
126       Video FPS ---------->  15, 30 or 60.  don't change here!
127,128   Video resolution --->  2,1 for 640x480; 1,0 for 320x240
Can I make something bad for my IXUS 115 hs by manipulaiting with this parametrs?
« Last Edit: 23 / October / 2012, 14:32:22 by SamMoshenko »


Re: IXUS 115 HS / ELPH 100 HS request
« Reply #494 on: 23 / October / 2012, 18:41:28 »
How can I make script using this information? Can you give litle exampl?
Quote
126       Video FPS ---------->  15, 30 or 60.  don't change here!
127,128   Video resolution --->  2,1 for 640x480; 1,0 for 320x240
Can I make something bad for my IXUS 115 hs by manipulaiting with this parametrs?

You can certainly read that information in a script :

uBASIC :
Code: [Select]
p=get_prop 126Lua :
Code: [Select]
p=get_prop(126)
That does not necessarily mean you can set those particular values.  The documentation is unclear.  If you could,  it would look like this :

uBASIC :
Code: [Select]
set_prop 126 15Lua :
Code: [Select]
set_prop(126, 15)
This may or may not do something.  And yes,  its always possible with CHDK that you can damage your camera although its not very likely.
« Last Edit: 23 / October / 2012, 19:44:59 by waterwingz »
Ported :   A1200    SD940   G10    Powershot N    G16

Re: IXUS 115 HS / ELPH 100 HS request
« Reply #495 on: 25 / October / 2012, 21:27:30 »
waterwingz
thanks for your reply!

I have another problem. Override Subj. Dist. Value doesnt work on my Ixus 115 hs.
- Disable Overrides [Disable]
- Override Subj. Dist. Value [1000]
- Value Factor [1]
But it even doesnt show this parametrs on display.

Re: IXUS 115 HS / ELPH 100 HS request
« Reply #496 on: 25 / October / 2012, 22:41:03 »
waterwingz
I have another problem. Override Subj. Dist. Value doesnt work on my Ixus 115 hs.

http://chdk.wikia.com/wiki/ELPH100#Notes_on_SD_Override_for_the_ELPH100

(to be fair,  I just added that note)
« Last Edit: 25 / October / 2012, 22:57:21 by waterwingz »
Ported :   A1200    SD940   G10    Powershot N    G16

Re: IXUS 115 HS / ELPH 100 HS request
« Reply #497 on: 26 / October / 2012, 10:19:12 »
waterwingz
I have another problem. Override Subj. Dist. Value doesnt work on my Ixus 115 hs.

http://chdk.wikia.com/wiki/ELPH100#Notes_on_SD_Override_for_the_ELPH100

(to be fair,  I just added that note)
I tryed as written but it stell doesnt work. And as I said even these parametr doesnt display as for example Flash Force Manual or whatever.
In script it does work!(whith using "set_focus" and than pressing Half_Shoot, waiting 1 sec and releasing Half_shoot)
But what I realy nead is using MF in video rec. ::) I made AF in chdk menu by pressing "Set". And in script I replaiced Half_shoot with Set. But it doesnt work.


*

Offline srsa_4c

  • ******
  • 4451
Re: IXUS 115 HS / ELPH 100 HS request
« Reply #498 on: 26 / October / 2012, 11:03:26 »
The following are more like some developer hints, not direct answers.
I tryed as written but it stell doesnt work. And as I said even these parametr doesnt display as for example Flash Force Manual or whatever.
CAM_SHOW_OSD_IN_SHOOT_MENU needs to be activated for these to show up in AF lock.
Quote
But what I realy nead is using MF in video rec.
My guess is that "normal" movie mode is not recognized as movie mode (the only real movie mode known by CHDK is MODE_VIDEO_SPEED). Is it one of the two unknown modes?
Without that, AF lock needs to be activated for SD override to work.

Re: IXUS 115 HS / ELPH 100 HS request
« Reply #499 on: 27 / October / 2012, 06:41:01 »
The following are more like some developer hints, not direct answers.
I tryed as written but it stell doesnt work. And as I said even these parametr doesnt display as for example Flash Force Manual or whatever.
CAM_SHOW_OSD_IN_SHOOT_MENU needs to be activated for these to show up in AF lock.
Quote
But what I realy nead is using MF in video rec.
My guess is that "normal" movie mode is not recognized as movie mode (the only real movie mode known by CHDK is MODE_VIDEO_SPEED). Is it one of the two unknown modes?
Without that, AF lock needs to be activated for SD override to work.
OSD is activated.I didnt understand about movie mode. And I tryed with AF locked and unlocked. Dont work.

 

Related Topics


SimplePortal 2.3.6 © 2008-2014, SimplePortal