This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2340R5: Sysconfig ISR registration missing

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:

https://dev.ti.com/tirex/explore/content/simplelink_academy_for_cc23xx_7_40_00_00/_build_simplelink_academy_for_cc23xx_7_40_00_00/source/cc2340rx_00_data_stream_examples.html#id29

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