Hi forum, I'm working with a CYW94343WWCD1 evaluation board here and my goal is to get the ble_wifi_introducer demo project working through a terminal interface and without a mobile peer app, like the one included for iOS. what parts of ble_wifi_introducer.c would I need to start modifying to make this happen? I've noticed a few functions which explicitly mention the app, like app_button_event_handler, but besides that I'm not sure where to look.
Solved! Go to Solution.
Are you trying to replace the BLE interface with a wired serial UART terminal to enter the SSID & Password ?
int result_wifi_join = wifi_join( (char*)wifi_introducer_char_nw_ssid_value , strlen( (char*)wifi_introducer_char_nw_ssid_value), ap_info.security,
wifi_introducer_char_nw_passphrase_value, strlen( (char*)wifi_introducer_char_nw_passphrase_value ), NULL, NULL, NULL );
Let me know if this is what you were looking for.
Are you trying to replace the BLE interface with a wired serial UART terminal to enter the SSID & Password ?
int result_wifi_join = wifi_join( (char*)wifi_introducer_char_nw_ssid_value , strlen( (char*)wifi_introducer_char_nw_ssid_value), ap_info.security,
wifi_introducer_char_nw_passphrase_value, strlen( (char*)wifi_introducer_char_nw_passphrase_value ), NULL, NULL, NULL );
Let me know if this is what you were looking for.
Thank you! That's what I was looking for~