request for dump properties on memory - Feature Requests - CHDK Forum supplierdeeply

request for dump properties on memory

  • 1 Replies
  • 3609 Views
*

Offline acorrias

  • *
  • 20
  • [A650IS]
request for dump properties on memory
« on: 30 / May / 2008, 14:02:49 »
Advertisements
Hi all
it would be useful a debug function to dump all properties to disk (memory card) in order to test, to discover and to check them.
This could be implemented in two ways. THe first based upon a sigle session the 2d writing to disk many session with proper separator... In both cases session file could be uploaded on a pc to be analized.

It could be useful for digicIII cams (i've got a a650is), whose set of properties is mostly undiscovered.
alex

*

Offline fudgey

  • *****
  • 1705
  • a570is
Re: request for dump properties on memory
« Reply #1 on: 30 / May / 2008, 14:06:52 »
Code: [Select]
rem Author: fudgey writes values of all propcases to/CHDK/SCRIPTS/PR_SCREEN.TXT
@title propcase dump to file
@param a first prop
@default a 0
@param b last prop
@default b 255
print_screen 1
print "propcase dump:"
for c=a to b
  get_prop c d
  print "P "c" = "d
next c
print "-------------"
print_screen 0
end

 

Related Topics