Changeset 773

Show
Ignore:
Timestamp:
07/30/08 17:42:50 (5 months ago)
Author:
liamstask
Message:

- add some doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • firmware/trunk/core/makingthings/osc.c

    r772 r773  
    188188  Sets whether the Osc system active. \n 
    189189  @param state 
    190   @return Zero on success. 
     190  @param udptask Whether or not to start up the internal UDP-OSC task (only relevant on startup). 
     191  @param usbtask Whether or not to start up the internal USB-OSC task (only relevant on startup). 
     192  @param async Whether or not to start up the internal async task that monitors registered subsystems 
     193  and automatically sends out messages from them (only relevant on startup). 
     194 
     195  \b Example 
     196  \code 
     197  // Fire up the OSC system with everything running (as in heavy) 
     198  Osc_SetActive( true, true, true, true ); 
     199  \endcode 
    191200*/ 
    192201void Osc_SetActive( int state, bool udptask, bool usbtask, bool async )