Hello @phatpaul
Thanks for your question.
Yes, the LPC845 DMA controller cannot write directly to the GPIO register space at address 0xA0000000. The GPIO peripheral is connected through the Cortex-M0+ I/O bus for fast CPU access, whereas the DMA controller accesses memories and supported peripherals through the AHB/APB bus infrastructure.
In addition, the LPC845 datasheet states that:
"The DMA controller can access all memories and the USART, SPI, I2C, DAC, and Capacitive Touch."
GPIO is not listed among the peripherals accessible by DMA. Therefore, DMA transfers to the GPIO register space are not supported and will generate a transfer error (ERRINT), which is consistent with the behavior you observed.

Thank you.
BR
Alice