For everyone interested, i can be done by making source code changes.
uart.c:55
From:
const uint16_t UART_BRG_SPEED[] = {
13332, /* 300 bps */
3332, /* 1200 bps */
1666, /* 2400 bps */
832, /* 4800 bps */
416, /* 9600 bps */
207, /* 19200 bps */
103, /* 38400 bps */
68, /* 57600 bps */
34, /* 115200 bps */
127, /* 31250 bps */
};
To:
const uint16_t UART_BRG_SPEED[] = {
13332, /* 300 bps */
3332, /* 1200 bps */
1666, /* 2400 bps */
832, /* 4800 bps */
416, /* 9600 bps */
207, /* 19200 bps */
103, /* 38400 bps */
68, /* 57600 bps */
34, /* 115200 bps */
127, /* 31250 bps */
3 /* 1000000 bps*/
};
main.c:171
From:
/* Set the UART port speed to 115200 bps. */
bus_pirate_configuration.terminal_speed = 8;
To:
/* Set the UART port speed to 1000000 bps. */
bus_pirate_configuration.terminal_speed = 10;