Home
last modified time | relevance | path

Searched refs:port_value (Results 1 – 2 of 2) sorted by relevance

/btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/synergy/ssp/src/driver/r_ioport/hw/
H A Dhw_ioport_private.h308 uint32_t port_value = 0; in HW_IOPORT_PinEventOutputDataWrite() local
313 port_value = *p_dest; in HW_IOPORT_PinEventOutputDataWrite()
318 port_value |= (uint32_t) (set_value); in HW_IOPORT_PinEventOutputDataWrite()
321 port_value &= (uint32_t) ((reset_value << 16) | 0x0000FFFF); in HW_IOPORT_PinEventOutputDataWrite()
326 port_value |= (uint32_t) reset_value << 16; in HW_IOPORT_PinEventOutputDataWrite()
329 port_value &= (uint32_t) ((set_value | 0xFFFF0000)); in HW_IOPORT_PinEventOutputDataWrite()
332 *p_dest = port_value; in HW_IOPORT_PinEventOutputDataWrite()
/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/fsp/src/r_ioport/
H A Dr_ioport.c759 uint32_t port_value = 0; in r_ioport_hw_pin_event_output_data_write() local
765 port_value = p_ioport_regs->PCNTR4; in r_ioport_hw_pin_event_output_data_write()
770 port_value |= (uint32_t) (set_value); in r_ioport_hw_pin_event_output_data_write()
774 port_value &= (((uint32_t) reset_value << 16) | IOPORT_PRV_16BIT_MASK); in r_ioport_hw_pin_event_output_data_write()
779 port_value |= (uint32_t) reset_value << 16; in r_ioport_hw_pin_event_output_data_write()
783 port_value &= (uint32_t) ((set_value | IOPORT_PRV_UPPER_16BIT_MASK)); in r_ioport_hw_pin_event_output_data_write()
786 p_ioport_regs->PCNTR4 = port_value; in r_ioport_hw_pin_event_output_data_write()