HIi
I am using the pc-driver-ble_py library to build a central in order to test a peripheral. At this point, I am interested in starting a LE ping and I saw that I should use the function sd_ble_opt_set.
I am trying to add the necessary code in the driver.py in order to be able to set the auth_payload_timeout however I always get the error : "in method 'sd_ble_opt_set', argument 3 of type 'ble_opt_t const *'", argument 3 is p_opt.
I created the class BLEGapPayload to use it as a p_opt input, but still the same error
class BLEGapPayload(object):
def __init__(
self,
conn_handle,
auth_payload_timeout
):
self.conn_handle = conn_handle
self.auth_payload_timeout = auth_payload_timeout
@classmethod
def from_c(cls, opt_auth_payload_timeout):
return cls(
conn_handle = opt_auth_payload_timeout.conn_handle,
auth_payload_timeout = opt_auth_payload_timeout.auth_payload_timeout
)
def to_c(self):
opt_auth_payload_timeout = driver.ble_gap_opt_auth_payload_timeout_t()
opt_auth_payload_timeout.conn_handle = self.conn_handle
opt_auth_payload_timeout.auth_payload_timeout = self.auth_payload_timeout
return opt_auth_payload_timeout
putting a constant value in p_opt doesn't work obviously
Can you guide me through this? I know the library doesn't support this functionality yet, Am i in the right direction? thanks in advance