This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Decoding infrared signals with nRF52 Development Kit, is it possible?

Hello, we have made cars that play laser tag against eachother using infrared emitters and receivers. The problem is that the infrared radiation bounces off the surroundings, and the cars end up getting hit by themselves.

The way it is set up now is that the nRF52 DK sends a 38kHz carrier signal for about 32 milliseconds to the infrared emitter.

What I would like to do is have the DK send modulated signals with several differently timed pulses in specific intervals, and that these specific interval pulses are registered in a library. This way the DK can compare the intervalled pulses and ignore its own signal.

But I read that having crucially timed tasks like this would not be possible due to the SoftDevice interrupting the timing. (link text).

Is this correct, and should I start looking for other solutions?

  • Yes, doing bit-banging while the SoftDevice is running will lead to some problems where the SoftDevice will interfere with the timing. I think you should be able to do this, but of course it depends on what protocol you are using (how the timing is), how often the SoftDevice interrupts your code (advertising interval or connection interval) and how many other processes your application is doing. If you are check if the data received is corrupt (f.ex. with CRC) and can accept to drop packets I believe this is plausible. You should run the IR code in APP_PRIORITY_HIGH interrupt and consider using capture task together with interrupt to catch the timing.

    Which protocol do you intend to use? I remember using this protocol a while back on an AVR chip to receive data from an IR remote. This does not have very strict timing so it should be possible to use together with the SoftDevice.

  • Are there average and worst case scenarios listed for the the time on the SoftDevice? Like what we can reasonably expect for how long each event might take?

  • Interrupt latency due to forwarding alone is given here. Latency due to processor usage pattern of the SoftDevice have to be calculated from the information given here.

  • Hello, and sorry for the late feedback. I am not that well versed in C-programming and have spent the last few weeks reading up and trying to implement an IR-protocol. I had read a bit about different IR-protocols before, but hadn't decided on a particular one before embarking on this project. The NEC-protocol seemed like a very robust and simple protocol though. Luckily, I found this example that Torbjørn Øvrebekk had made (although for nRF51). I managed to port it to nRF52 and integrate it with our existing code.

    I had trouble getting the IR-signal emitting to work together with other functions, and Torbjørn was nice enough to join me and debug the code. He found out that there was a conflict with the app_pwm that was used in our project and the PPI used for the IR-emitting.

  • Having commented out the app_pwm-parts of the code, I have got the IR-code to send signals in the NEC-protocol standard. The next challenge is to create code that registers the different intervals of the IR-signal (and compares them to pre-existing intervals). I haven't found any good examples of how to solve this on the nRF52 (just this), and I'm a bit stumped on where to start.

    As it is now, we use the pin_event_handler to see if there is a change on the pins connected to the IR-receivers, and then register a hit. But I have understood that the pin_event_handler might not be able to register the time intervals of when the pin is low or high, but just register a change on the pins, or am I mistaken?

Related