Neopixel LED driver control

Hi,
I would like to use neopixel to control an external led strip using one of the AUX outputs. I am using Cubeorange and PX4 version 1.15.0.
I have been able to combilple and start the neopixel driver.

I have also referred to issue:

and tried replicating as much as possible but I am unable to control the LEDs.
The driver reports to be controlling the leds when calling neopixel status , but no output is send to the gpio.

I’ve set up the DMA configuration as follows in board_config.h:

#if defined(USE_S_RGB_LED_DMA)
#  define S_RGB_LED_DMA              DMAMAP_DMA12_TIM1CH2_1
#  define S_RGB_LED_TIMER            1                        // Timer 1
#  define S_RGB_LED_CHANNEL          2                        // Channel 2 for AUX6
#  define S_RGB_LED_CHANNELN         1                        // Not used
#  define S_RGB_LED_TIM_GPIO         GPIO_TIM1_CH2OUT_2    
#endif

Does anyone know how to control the neopixel using AUX pin?