Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Damiano

#1
I was able to redo the procedure of a1ex using FWState instead of EvfState but the SCSState and SSSState are not present in the  final result. Does anyone know what's the name of SCSState and SSSState for this camera?
Thanks.
Damiano
#2
Hello,
I'm trying  to find the STATE objects of the 450D. In particular i'm trying to find the address of SCSState and SSSState.
I'm using this procedure on qemu as a1ex said : https://www.magiclantern.fm/forum/index.php?topic=17969.msg196010#msg196010
but the first part of the code doesn't return nothing.

./run_canon_fw.sh 450D,firmware="boot=0" -d calls |& grep --text EvfState

Any idea why the code doesnt't work and how can find SCSState and SSSSate for this camera?
Thank you,
Damiano
#3
Hi to all,
I'm trying to generating a CR2 with my own data. A1ex said that I simply have to overwrite the raw buffer with my own data.
But how can I do that? Is it possible to do that with a self-made module?
Thank you,
Damiano
#4
Is config_raw_liveview supported on this camera??
Thank you,
Damiano
#5
Hello, i'm trying to use this code in a module to save a dng file with the raw_info.buffer information but the dng file that it saves in the sd is always the same and is only 38.8kb
Is that a problem of the camera or am I doing something wrong?

void* buf = malloc(raw_info.frame_size);
            if (buf)
            {
                memcpy(buf, raw_info.buffer, raw_info.frame_size);
                char filename[50];
                get_numbered_file_name("bad%02d.dng", 99, filename, sizeof(filename));
                struct raw_info local_raw_info = raw_info;
                local_raw_info.buffer = buf;
                save_dng(filename, &local_raw_info);
                free(buf);
            }


Thank you,
Damiano
#6
Hi to all,
I am evolved in a project:I'm trying to change the raw buffer during the acquisition of an image using a self-made module.For the first step of my project I'm trying to overwrite the raw_info.buffer with this code to have a white image saved in the sd but nothing happen:

memset(raw_info.buffer, 0, raw_info.frame_size);

I can post the full code if needed.
Thanks for any help,
Damiano


#7
Hello,
where can I find a keypress hook list?? Is it possible to write a module that hooks the moment when a picture is taken?
Thanks for help.
Damiano
#8
Hi to everyone ,
Is it possible to use the feature "Dump image buffers" on the EOS 450D??
Thank you,
Damiano
#9
Hi,
have you found a way to do that? I think lua scripts aren't useful for that.
#10
Good morning I'm a 450D canon owner. I was wondering if it is possible to install modules in this camera? I tried to install the helloworld module (this one : https://www.magiclantern.fm/forum/index.php?topic=19232). I copied and pasted the .mo file in the sd(in the module folder) but the camera can't and see it.
Thank you
Damiano