Part Number: CC2340R5
Other Parts Discussed in Thread: SYSCONFIG
Hello,
I'm following along the SLA for the data_stream example and there's a picture in the configuring the button section that references a callback function field in the sysconfig GUI:
I don't think this exists anymore in the latest 7.40 SDK and with Sysconfig 1.18. This is my current view:

Using some of the other examples, I did add the GPIO_setCallback() function call inside my empty.c mainThread() function:
/*======== mainThread ========*/
void *mainThread(void *arg0)
{
BLEAppUtil_stackRegister();
/* Install Button callback */
GPIO_setCallback(CONFIG_GPIO_BUTTON_LEFT, LeftButtonPressed);
Can you just confirm that the callback field is indeed no longer present within sysconfig? And if so, then the SLA probably needs to be updated to reflect this.
Munan