I read in a CMakeList.txt, that EXPERIMENTAL_INSTABURST_ENABLED is posible on the nRF52832 platform only.
Is it possible to get Instaburst running on a nRF52840 chip using SDK for mesh 1.0.0?
if (EXPERIMENTAL_INSTABURST_ENABLED) if (PLATFORM STREQUAL "nrf52832_xxAA") add_definitions("-DEXPERIMENTAL_INSTABURST_ENABLED") else() message(WARNING "Instaburst is only available on nrf52832_xxAA") set(EXPERIMENTAL_INSTABURST_ENABLED OFF) endif() endif()
regards Gerry