Hi friends I use nrf51822 with sdk12.3 version and I want to use infrared receiver.
What method should I use to write the infrared receiver code?
Also, does nrf51 have an interrupt vector function like atmega128?
please help me everyone!!
Hi friends I use nrf51822 with sdk12.3 version and I want to use infrared receiver.
What method should I use to write the infrared receiver code?
Also, does nrf51 have an interrupt vector function like atmega128?
please help me everyone!!
If you have source code, please share
What method should I use to write the infrared receiver code?
The standard method that you'd use for any interfacing task: http://www.8052mcu.com/forum/read/160143
does nrf51 have an interrupt vector function like atmega128?
It depends on what you mean by, "like" ?
The nRF51 has an ARM Cortex-M0 CPU.
Yes, the ARM Cortex-M0 does have interrupt vectors - but they are not quite the same as the AVR.
I suggest that you get a copy of this book:
The Definitive Guide to ARM® Cortex®-M0 and Cortex-M0+ Processors
2nd Edition
Author: Joseph Yiu
The ARM Cortex-M0 is widely used by many manufacturers throughout the industry - there's loads of resources available on the interwebs...
no "like", it means "same"
OK - so, to expand on what I said, the basic concepts are similar, but the implementation details are not the same.
thanks awneil :)