Both currently use the same chip and firmware. The chip is an stm32f103c8 which has 20k of ram.
The firmware works by sending bytes at a time to the gpio port using DMA and timers. There isn’t a way to use all 8 bits for a single gpio with this method. It may be possible to use some other method to output on a single pin though. Perhaps a peripheral is available on one of those pins, or the cpu could “bit bang” the protocol out, but may be too busy to process incoming data simultaneously.
If your are up for a challenge, the code is there!