EOS M100 porting - page 15 - DryOS Development - CHDK Forum

EOS M100 porting

  • 199 Replies
  • 59026 Views
Re: EOS M100 porting
« Reply #140 on: 21 / April / 2022, 01:13:11 »
Advertisements
Not really, I tried chimp doesn’t seem to be supported

*

Offline Caefix

  • *****
  • 945
  • Sorry, busy deleting test shots...
Re: EOS M100 porting
« Reply #141 on: 21 / April / 2022, 09:14:13 »
 :) Well, Use chimp different. It needs a known cam to complete. Use IMG_100.jpg to get bootable card.
Then replace all files with available build for Your cam. (Hopefully Fw100a)  ::)
https://chdk.setepontos.com/index.php?topic=13943.msg147014#msg147014
Lock SD-card ...  :haha
All lifetime is a loan from eternity.

Re: EOS M100 porting
« Reply #142 on: 21 / April / 2022, 10:36:00 »
Huh in chimp itself it said can was not supported I do have fw100a I’ve done a dump before

Img-100

So do I just call one of the imgs img100 in dcim and use eos card to make it bootable before using chimp?

*

Offline Caefix

  • *****
  • 945
  • Sorry, busy deleting test shots...
Re: EOS M100 porting
« Reply #143 on: 21 / April / 2022, 10:41:28 »
If You know to use Eos-Card then no need for Chimp.
Jump to .zip...  :D
All lifetime is a loan from eternity.


*

Offline Caefix

  • *****
  • 945
  • Sorry, busy deleting test shots...
Re: EOS M100 porting
« Reply #144 on: 11 / June / 2022, 15:18:40 »
Plus  ;)

Code: [Select]
function lens_name()
    local pname = 0
    if (bi.platform=="m3") then
        if (bi.platsub == "101a") then
            pname = 0x00244969
        else
            pname = 0x002449ad
        end
    elseif (bi.platform=="m10") then
        pname = 0x272065
    end
    local len = peek(pname-1,1)
    local i = 0
    local t = {}
    while i < len do
        local c = peek(pname + i, 1)
        if c == 0 then break end
        table.insert(t, string.char(c))
        i = i + 1
    end
    local name = table.concat(t)
    return name
end

Is the "pname" available for M100, too?  :-*
All lifetime is a loan from eternity.

Re: EOS M100 porting
« Reply #145 on: 11 / June / 2022, 16:11:17 »
Plus  ;)

Code: [Select]
function lens_name()
    local pname = 0
    if (bi.platform=="m3") then
        if (bi.platsub == "101a") then
            pname = 0x00244969
        else
            pname = 0x002449ad
        end
    elseif (bi.platform=="m10") then
        pname = 0x272065
    end
    local len = peek(pname-1,1)
    local i = 0
    local t = {}
    while i < len do
        local c = peek(pname + i, 1)
        if c == 0 then break end
        table.insert(t, string.char(c))
        i = i + 1
    end
    local name = table.concat(t)
    return name
end

Is the "pname" available for M100, too?  :-*

Could you help me out on the peek addresses for lens name on the M10 and M100?
M10 (all supported fw versions): 0x272065
M100 100a: 0x1FC84E

*

Offline Caefix

  • *****
  • 945
  • Sorry, busy deleting test shots...
Re: EOS M100 porting
« Reply #146 on: 11 / June / 2022, 16:19:30 »
All lifetime is a loan from eternity.

Re: EOS M100 porting
« Reply #147 on: 11 / June / 2022, 16:25:16 »


Re: EOS M100 porting
« Reply #148 on: 11 / June / 2022, 16:48:16 »
Need lenses,... :haha
 https://chdk.setepontos.com/index.php?topic=13638.msg146886#msg146886

All the M lenses are registered in the script  ;)

@Caefix

If you are saying you don’t own any of the registered M lenses, then you can still use exposure bracketing.

Re: EOS M100 porting
« Reply #149 on: 12 / June / 2022, 01:28:16 »
@Caefix

https://photography.grayheron.net/2022/06/landscape-bracketing-script-now.html

Plus I'll be tweaking the code today to give manual lenses an ETTR meter.

UPDATE: ETTR meter feedback now working on fully manual lenses :-)
« Last Edit: 12 / June / 2022, 01:44:33 by pigeonhill »

 

Related Topics