예제 #1
0
def set_trigger_uint64(handle, name, val):
    """ Create or update an uint64_t variable that can be read from a trigger.

        :param handle: Handle of the callback with the trigger.
        :type handle: int

        :param name: Name of the variable
        :type name: str

        :param val: Value for the variable, must fit in a uint64_t
        :type val: int

        :return: None
        :rtype: None
    """
    import c_api
    return c_api.set_trigger_uint64(handle, name, val)
예제 #2
0
def set_trigger_uint64(handle, name, val):
    """ Create or update an uint64_t variable that can be read from a trigger.

        :param handle: Handle of the callback with the trigger.
        :type handle: int

        :param name: Name of the variable
        :type name: str

        :param val: Value for the variable, must fit in a uint64_t
        :type val: int

        :return: None
        :rtype: None
    """
    import c_api
    return c_api.set_trigger_uint64(handle, name, val)