I managed to compile capt_seq.c and camera boots correctly when tCaptSeqTa was uncommented. When shooting RAW though the process starts and the "printer" button turns to blue and the DCIM/100CANON folder is created but then the camera crashes and I have no idea what causes it. No file is created in the SD card.
Here's a small fix to capt_seq.c
Original:
void __attribute__((naked,noinline)) sub_FFD297A4_my(long p)
{
asm volatile (
"STMFD SP!, {R4,LR}\n"
"LDR R4, [R0,#0xC]\n"
"BL sub_FFD32564\n"
"CMP R0, #0\n"
"BNE loc_FFD297BC\n"
"BL sub_FFD32570\n"
"loc_FFD45060:\n"
Should be:
void __attribute__((naked,noinline)) sub_FFD297A4_my(long p)
{
asm volatile (
"STMFD SP!, {R4,LR}\n"
"LDR R4, [R0,#0xC]\n"
"BL sub_FFD32564\n"
"CMP R0, #0\n"
"BNE loc_FFD297BC\n"
"BL sub_FFD32570\n"
"loc_FFD297BC:\n" <----This has to be corrected