There are bit definitions in 51 microcontrollers, they have
uint bdata sta; //Status flagsbit RX_DR =sta^6;sbit TX_DS =sta^5;sbit MAX_RT =sta^4;
The b-date here is a bit-addressable internal data storage area, allowing mixed access of bits and bytes (16B)But I don’t know how to define it on Renesas’ chips.
Here is an article below about NRF24L01 if u need a reference.
Tips:www.utmel.com/.../nrf24l01-transceiver-nrf24l01-arduino-datasheet-pinout
Thanks! Ask for helping!
Hi Kaku,
What Renesas device are you trying to interface the NRF24L01 with? If its for RL78 or RX, you may want to check these:
https://github.com/NordicPlayground/ble-sdk-RL78
https://github.com/spirilis/rxrf24
JBRenesasRulz Forum Moderator
https://renesasrulz.com/https://academy.renesas.com/https://en-support.renesas.com/knowledgeBase/
Hello, JB!
I would like to interface it with RX.
So, it is your info that reminds me of this, which is helpful to my study.
Thank you!
Cheers!
KA.