SX200is Porting - page 107 - DryOS Development - CHDK Forum

SX200is Porting

  • 1105 Replies
  • 544577 Views
Re: SX200is Porting
« Reply #1060 on: 23 / August / 2010, 13:23:02 »
Advertisements
Hi All,

Not really a problem, but despite installing the 1.00d firmware version on my 1.00d SX200 the "Show build info" always shows 1.00c. Is that right?

Regards,
Rogerio
SX200 IS - 1.00D

*

Offline whim

  • ******
  • 2046
  • A495/590/620/630 ixus70/115/220/230/300/870 S95
Re: SX200is Porting
« Reply #1061 on: 23 / August / 2010, 14:18:50 »
from CHDK root Makefile:

Quote
cp $(topdir)bin/$(VER)-sx200is-100c-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx200is-100d-$(BUILD_NUMBER).zip

in other words: the 'builds' for 100d are just copies of their 100c counterparts.


HTH,

wim 

Re: SX200is Porting
« Reply #1062 on: 24 / August / 2010, 13:01:36 »
Hi Whim,

Makes sense now, tks!

Rogerio
SX200 IS - 1.00D

Re: SX200is Porting
« Reply #1063 on: 29 / August / 2010, 14:19:53 »
Just out of interest has there been any update on the bracketing / random flash issue yet?

I've been busy for a while and worried I may have missed something

Tkgafs


*

Offline OldGit

  • ****
  • 303
Re: SX200is Porting
« Reply #1064 on: 03 / September / 2010, 06:06:55 »
@tkgafs
the random flash bug is fixed, but the AV Bracketing in custom timer and continuous modes does not work with the flash off.
It does work in continuous LV / continuous AF mode.

Hope this helps.

OldGit
SX200 IS-100C

*

Offline Darkness

  • **
  • 72
  • SX200IS 100D
Re: SX200is Porting
« Reply #1065 on: 07 / September / 2010, 06:48:44 »
http://eugenia.queru.com/2010/08/26/is-chdk-worth-it-for-video/

anyone else tested the video possibilities?
SX200IS 100D

*

Offline Nando

  • *
  • 16
Re: SX200is Porting - problems
« Reply #1066 on: 07 / September / 2010, 19:44:54 »
Hi OldGit,
i have some problems with my Canon Powershot SX200 IS.

- set Focus with Zoom in <Alt>mode doesn't work (only Kamera Zoom and camera-shutdown by big-zoom)
- autostart on any script make a foto (for example autostart of demo.bas, turn on camera -> take a foto)
- parse error at "exit_alt" in Script
- i can't set Timer Mode with set_prop
Code: [Select]
...
rem Timer Mode SX 200 IS & SD 780 0,1,2,3,4=Off, 2 Seconds, 10 Seconds, Custom, Face Detection
set_prop 223 3
...

I hope you can help me.

bye,
Nando

P.s. bad english  :-[
Canon Powershot SX200 IS

*

Offline OldGit

  • ****
  • 303
Re: SX200is Porting
« Reply #1067 on: 12 / September / 2010, 07:04:56 »
For completeness..

The script problems that Nando was having have been resolved via PMs, except for the UBasic command exit_alt.

This gives a parse error even in the PC debuger, will report this in scripting forum.
Note that the Lua exit_alt() command works.

OldGit
SX200 IS-100C


*

Offline Nando

  • *
  • 16
Re: SX200is Porting
« Reply #1068 on: 15 / September / 2010, 07:52:37 »
Hi OldGit,
i have another thing that I noticed. In <alt>-mode switching to RAW images does not always work. In manual focus changes the Disp.-key only the focus to infinity.

data of test (that is ok)

test.lua
Code: (lua) [Select]
--[[
@title Test Lua Script
]]

propertycase = get_prop(6)
print("propertycase 6 "..propertycase)
        sleep(3000)
propertycase = get_prop(133)
print("propertycase 133 "..propertycase)
        sleep(3000)


focus normal.
Quote
propertycase 6 0
propertycase 133 0

manual focus
Quote
propertycase 6 4
propertycase 133 1

bye,
Nando
« Last Edit: 15 / September / 2010, 08:11:54 by Nando »
Canon Powershot SX200 IS

*

Offline OldGit

  • ****
  • 303
Re: SX200is Porting
« Reply #1069 on: 25 / September / 2010, 15:18:10 »
@Nando
in the Manual Focus mode the display shortcut is set to focus infinity
This is defined in the /core/gui.c as shown below.....
Code: [Select]
#if !CAM_HAS_ERASE_BUTTON
//Alt mode
 #define SHORTCUT_TOGGLE_RAW          KEY_DISPLAY
 #define SHORTCUT_MF_TOGGLE           KEY_UP
//Half press shoot button   
 #define SHORTCUT_TOGGLE_HISTO        KEY_DOWN
 #define SHORTCUT_TOGGLE_ZEBRA        KEY_MENU
 #define SHORTCUT_TOGGLE_OSD          KEY_RIGHT
 #define SHORTCUT_DISABLE_OVERRIDES KEY_LEFT
//Alt mode & Manual mode   
 #define SHORTCUT_SET_INFINITY        KEY_DISPLAY
 #define SHORTCUT_SET_HYPERFOCAL      KEY_DOWN

I know, I thought we had a bug as well, but that is the way it's supposed to work.
So just toggle Raw before you go to Manual Focus and all is well.

Regards OldGit
SX200 IS-100C

 

Related Topics