Are you sure that you don't have frame errors? This looks strange and let not see any message structure. I have a very different behavior. My startup looks like this:

Startup_until_WiFi_connected with CGO app on my phone
Here are the steps how I looking into the communication:
Raw recording with 4-channel logic analyzer Saleae: Startup_until_WiFi_connected.sal
This file can be seen with Saleae Logic 2:
Download Logic 2 Software
Here is the start sequence until gimbal is initialized: Startup_until_WiFi_connected.png
This may be the mysterious start pulse. Not clear if it is needed: Startpuls.png

Exported files from Async Serial decoders, channel 0 to 3: Startup_until_WiFi_connected_ch[0..3].txt
Those files decoded by my cam_uart tool raw data (hex): Startup_until_WiFi_connected_Data_hex.csv
And the same better usable with Libre Office Calc (or Excel): Startup_until_WiFi_connected_Data_hex.ods
What I could decode and thougt it is worth to do: Startup_until_WiFi_connected_Data_hex.csv
And the same better usable with Libre Office Calc (or Excel): SStartup_until_WiFi_connected_Data_hex.ods
Code:
The camera comunication starts with some 1Hz haertbeat messages (MsgID 0) broadcasted by camera:
FE 05 00 02 00 00 00 00 00 00 7D 00 01
Flight controller pings with message (MsgID 1) also broadcast:
FE 03 00 01 00 00 00 01 02 00 01
And flight controller also send heartbeat (MsgID 0) 1Hz as broadcast:
FE 05 03 01 00 00 00 00 00 00 00 00 01
Then the flight controller starts to send commands to gimbal (MsgID 1) and telemetry to camera (MsgID 2) which camera should send to ST16 via WiFi.
FE 1A 9E 01 00 02 00 01 CF 26 DA FF 10 00 6C 04 00 00 0D 00 00 00 00 00 00 00 00 08 58 02 00 00 F4 01
FE 22 05 01 00 03 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
After 8 sec when gimbal initialized it start to sent messages with gimbal position (MsgID:
FE 06 08 02 00 01 00 03 A2 07 09 38 9F 38
Note: All messages are shown without CRC (last 2 byte)
The files are here:
Startup_until_WiFi_connected.zip
All this stuff shows my workflow and is redundant. Maybe the *.ods files are the best to start with.