stm32_hal_nrf24l01p icon indicating copy to clipboard operation
stm32_hal_nrf24l01p copied to clipboard

nRF24L01+ library with STM32 HAL driver

Results 2 stm32_hal_nrf24l01p issues
Sort by recently updated
recently updated
newest added

I'm looking at your code and see that the `read_register` function seems to only work for commands that return single byte responses: ```c static uint8_t read_register(uint8_t reg) { uint8_t command...

1. Why you not declared this pin : _ > void nrf24l01p_rx_receive(uint8_t* rx_payload) > { > nrf24l01p_read_rx_fifo(rx_payload); > nrf24l01p_clear_rx_dr(); > > HAL_GPIO_TogglePin(GPIOC, GPIO_PIN_13); > } _ 2. Why you used...