Hi,
Currently, I'm working with the ISP2053, one of the nRF5340's 3rd models.
As a beginning, my colleague wrote a code based on the throughput sample and I found that the code is not working as I expected.
It was able to get the required sampling rate with GPIOs until I insert the bt_nus_send() function in the application core's main.c
I think the BLE functions running on the application core slows down the digital reading part.
As the nRF5340 is a dual-core module, I want the network core handles all the BLE functions and the application core performs high-rate digital reading and processing.
I found an nRF RPC sample that seems like can solve the issue, but I cannot understand how to use it.
According to the explanation written in nRF RPC sample, what I have to do is build the same code targetting application core with adding '-DCONFIG_BT_RPC_STACK=y' argument to the build option. But if I do so, the system just shut down.
I'm sorry for the ambiguous explanation as I'm really confused now... Do I have to re-write all the code for the RPC sample? Is there any tutorial?