Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Hi, Ti
I use simplelink_lowpower_f3_sdk_8_40_00_61\examples\rtos\LP_EM_CC2340R53\ble5stack\basic_ble
We want to use Button(CONFIG_GPIO_SW1) and Motion Sensor (CONFIG_GPIO_MOTION_INT) to wakeup from shutdown.
I set Button wakeup like:
GPIO_setConfig(CONFIG_GPIO_SW1, GPIO_CFG_IN_PU | GPIO_CFG_SHUTDOWN_WAKE_LOW);
But when I set Motion Sensor wakeup like:
GPIO_setConfig(CONFIG_GPIO_MOTION_INT, GPIO_CFG_IN_PU | GPIO_CFG_SHUTDOWN_WAKE_LOW);
1. I found when set Button and Motion Sensor wakeup at the same time,only motion sensor can wakeup but button can’t.How can I wake up by using both the button and the sensor
I use cc2745 used implelink_lowpower_f3_sdk_8_40_00_61\examples\rtos\LP_EM_CC2745R10_Q1\ble5stack\basic_ble to make a ble connection with cc2340.
when I set cc2340 scan type as active the connection can be successfully established.But when I set cc2340 to passive scanning, cc2340 kept scanning but couldn't successfully connect to cc2745.
2.I want to change the scan type of cc2340 to passive scanning and successfully connect with cc2745,What can I do to achieve this goal?