CHDK Wiki
(→‎usb_force_active: refined definition of what this does)
Tags: Visual edit apiedit
(mention script menu variables)
Tag: sourceedit
(3 intermediate revisions by one other user not shown)
Line 10: Line 10:
   
 
: This loads the file and executes it. This is generally preferable to using "require", because it avoids the problems with sleep etc mentioned below.
 
: This loads the file and executes it. This is generally preferable to using "require", because it avoids the problems with sleep etc mentioned below.
  +
: If the script uses parameters from the CHDK script menu, set the variables defined in the script header fore loadfile, like a=1 b=2 loadfile...
 
* In chdkptp 1.2 and earlier, executing a script while another script is already running can cause crashes and memory leaks.
 
* In chdkptp 1.2 and earlier, executing a script while another script is already running can cause crashes and memory leaks.
 
** To check whether your script has terminated, you can use the script status command (script-status in ptpcam.)
 
** To check whether your script has terminated, you can use the script status command (script-status in ptpcam.)
Line 56: Line 57:
 
'''Note : '''this function requires the ''CAM_ALLOWS_USB_PORT_FORCING'' option to be selected in the platform_camera.h build configuration file for the camera.
 
'''Note : '''this function requires the ''CAM_ALLOWS_USB_PORT_FORCING'' option to be selected in the platform_camera.h build configuration file for the camera.
   
  +
== usb_sync_wait ==
  +
usb_sync_wait( mode )
  +
CHDK 1.4.0 or newer only.
  +
  +
Causes the camera to wait for a sync signal (USB power going from 5V to 0V) before completing the next exposure.
  +
* mode = 1 or ''true ''for wait for sync at next shot
  +
  +
* mode = 0 or ''false ''for do not wait for sync at next shot
  +
This function useful in multicam scripts that need precise synchronization.
  +
  +
Returns nothing.
 
==read_usb_msg==
 
==read_usb_msg==
   

Revision as of 05:33, 22 July 2015

Introduction

This page describes CHDK Lua functions available on the camera to support control using the PTP Extension.

PTP client applications use the PTP_CHDK_ExecuteScript API to execute Lua code. In chdkptp and ptpcam, this is available through the lua and luar commands.

General information about executing Lua code over PTP

  • To execute a Lua script already loaded on your camera (e.g. testprgm.lua), send the following Lua code from your client
 loadfile('A/CHDK/SCRIPTS/testprgm.lua')()
This loads the file and executes it. This is generally preferable to using "require", because it avoids the problems with sleep etc mentioned below.
If the script uses parameters from the CHDK script menu, set the variables defined in the script header fore loadfile, like a=1 b=2 loadfile...
  • In chdkptp 1.2 and earlier, executing a script while another script is already running can cause crashes and memory leaks.
    • To check whether your script has terminated, you can use the script status command (script-status in ptpcam.)
    • by default, chdkptp checks script status and prevents executing a new script while a script is running.
    • If using chdkptp with CHDK 1.3, you can use the killscript command to end a running script.
  • Lua return values and errors messages are sent using the message interface.
    • Simple tables are returned in a limited human readable string format by default, see [1] for a description. This can be changed by providing your own usb_msg_table_to_string. A replacement that properly serializes Lua tables can be found in chdkptp.
  • In CHDK 1.2 and later, CHDK alt mode is automatically entered when a PTP script starts to execute. Unless the alt state is explicitly set with enter_alt() or exit_alt(), the previous alt state is restored when the script ends. In CHDK version prior to 1.2 Lua script execution would CHDK alt mode in a confused state. On these builds you may need to press the alt button a couple times to get the alt menu and buttons to respond as expected.
  • While scripts in files already on the camera may be used, functions that yield (e.g. sleep(), wait_click() etc.) cannot be used inside require (or other pcall).
  • Any key presses generated by script are released when the script ends. If you want to control key press and releases over PTP, you can use the message interface, or use Logical event functions to send the key presses.
  • In CHDK prior to version 1.2, the function switch_mode_usb() should be used instead of set_record to switch between record and play mode when PTP is connected. In 1.2 and later, set_record will call the USB code if a USB connection is detected. switch_mode_usb is still available, and always calls the USB specific code.
  • Many shooting override functions (like set_tv*, set_focus, etc) only take effect if the shot is taken in the same script as the override was set. When the script ends, the override is reset. Each lua or luar command is a new script, so
luar set_tv96_direct(1)
luar shoot()
will not use the tv96 setting. Use
luar  set_tv96_direct(1) shoot()
instead, or use canon manual mode and set USER propcases, or set_config_value with CHDK overrides.

PTP Functions

The following functions are intended specifically for use with PTP. While they are available to all scripts, using them without a PTP connection is not recommended.

switch_mode_usb

switch_mode_usb(mode)

Set the camera to play or record mode.

mode is 1 for record or 0 for play.

usb_force_active

usb_force_active(mode)

Forces the Canon firmware to see the USB 5V line as active regardless of its actual state.

  • mode = 1 or true for USB 5V power detect forced active
  • mode = 0 or false for USB 5V power detect normal

This function useful in multicam scripts that need to maintain PTP communications while the USB 5V line is switched on & off for USB remote shooting - particularly for precision sync.

Returns true if function is implemented, false otherwise.

Note : this function requires the CAM_ALLOWS_USB_PORT_FORCING option to be selected in the platform_camera.h build configuration file for the camera.

usb_sync_wait

usb_sync_wait( mode )

CHDK 1.4.0 or newer only.

Causes the camera to wait for a sync signal (USB power going from 5V to 0V) before completing the next exposure.

  • mode = 1 or true for wait for sync at next shot
  • mode = 0 or false for do not wait for sync at next shot

This function useful in multicam scripts that need precise synchronization.

Returns nothing.

read_usb_msg

msg = read_usb_msg([timeout])

Read a message sent from the client program using the PTP_CHDK_WriteScriptMsg API from the CHDK PTP interface (putm command in ptpcam or chdkptp).

Returns the next available message as a string, or nil if no messages are available

If timeout is given and not zero, wait until a message is available or timeout expires.

write_usb_msg

status = write_usb_msg(msg,[timeout])

Writes a message to the CHDK PTP interface. Client applications can read the message using the PTP_CHDK_ReadScriptMsg API (getm command in ptpcam or chdkptp)

msg may be nil, boolean, number, string or table. Tables will be converted to a string by usb_msg_table_to_string

returns true if the message was queued successfully, otherwise false

If timeout is set and not zero, wait until message is written or timeout expires.

NOTE strings will not include a terminating NULL.

usb_msg_table_to_string

s=usb_msg_table_to_string(table)

This function is called by the PTP message code when a table is returned from a Lua script, or sent using write_usb_msg. Lua code can override this function to provide different serialization formats. The return value should be a string on success. On failure, a Lua error should be thrown. PTP scripts may override this function to provide their own serialization format.

Note used only for values sent from the camera to the PC. Messages received with read_usb_msg are always strings, and user code is responsible for unserializing them if needed.