Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - dimchang

#1
seems great!
#2
General Development / Re: It's built, now what?
August 10, 2012, 05:13:38 AM
this is what confused me last week ;D
Just use *.fir from last release, and put those *.fir and your platform/all/autoexec.bin into your sdcard root.
then turn on your camera. if camera said anything is missing, find and copy them  into your sdcard.
#3
anyway, i made it :)
i added a submenu and write some code in lens.c to limit the max auto iso.
PS, my download speed is around 400Bps, but i am not in Euro, i am in China.
#4
Quote from: miyake on August 09, 2012, 08:46:36 AM
it's a memory address for PROP_AUTO_ISO_RANGE variable.
See the last line of src/propvalues.c . it defined "int auto_iso_range = 0x4868;" on 500D.
Because 500D has no PROP_AUTO_ISO_RANGE in canon menu.
and using this value in shoot.c .
But only to use Bulbramp or HDR.

I guess,
- add menu item to setup max iso value on ML menu
- enable Live View auto iso ML function(currently disabled now may be.)
  - use auto_iso_range value  in LIveVIew audo iso

So you may read these codes.Actually, I don't know this is working or not.
hi, miyake, seems the code in line 4576 of shoot.c is only for movie mode.
my thinking is, when i take a picture with auto_iso selected,
ML will check if actual iso is greater than 400, then set the ISO to 400(camara will re-calculate the shutter).
and after picture taken, set ISO to auto again.

Is it achievable?
BTW, miyake, i use your VM to set up my environment, thank you ;D
#5
i want to write a function to set the max iso(maybe 400) for auto iso range of 500D.
and i see a property "#define PROP_AUTO_ISO_RANGE     0x8000003b // len=2, LSB is max iso, MSB is min iso (ignored?)"
How to use this property to set the max iso?

if can not use this property, any idea to set the max iso?
thanks in advance:)