示例#1
0
def aa_sleep_ms (milliseconds):
    """usage: u32 return = aa_sleep_ms(u32 milliseconds)"""

    if not AA_LIBRARY_LOADED: return AA_INCOMPATIBLE_LIBRARY
    # Call API function
    return api.py_aa_sleep_ms(milliseconds)
示例#2
0
 def sleep(self, ms):
     '''sleep for specified number of milliseconds
     '''
     api.py_aa_sleep_ms(ms)
示例#3
0
def aa_sleep_ms (milliseconds):
    """usage: u32 return = aa_sleep_ms(u32 milliseconds)"""

    if not AA_LIBRARY_LOADED: return AA_INCOMPATIBLE_LIBRARY
    # Call API function
    return api.py_aa_sleep_ms(milliseconds)
示例#4
0
 def sleep(self, ms):
     '''sleep for specified number of milliseconds
     '''
     api.py_aa_sleep_ms(ms)