About NRF24L01??

There are bit definitions in 51 microcontrollers, they have

uint bdata sta; //Status flag
sbit 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!