I meant that same mechanical sound is hearable when shooting with normal shutter even in other modes than bulb.
Etiquette, expectations, entitlement...
@autoexec_bin | #magiclantern | Discord | Reddit | Server issues
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 MenuQuote from: coon on December 28, 2020, 06:56:59 PM
Nice finding! It seems we have a first feature for RP . Usually silent shutter is only possible in SCN mode or when performing a focus bracketing shoot but not in any other modes.
When do you get ERR70 in bulb? Directly after shutter press or when it tries to close the shutter?
ML_SRC_EXTRA_OBJS = \
log-d678.o \
function_overrides.o \
vram.o
ifndef ML_SRC_REBOOT_OBJ
ML_SRC_REBOOT_OBJ = reboot.o \
disp_direct.o font_direct.o vram.o \
strlen.o strcmp.o gcc-libgcc.a \
cache.o \
footer.o
endif
MEM(0xD2030100) = 2; /* unsure; 2 or 6 */
MEM(0xD2030104) = 0x20077; /* meaning: we are going to change the bitmap buffer address */
MEM(0xD2030108) = 0x00019018 + offset++; /* address of new bitmap buffer, e.g. "0x00019018 + offset++", or 0x300000, or 0x280000, or 0x2AB000, or something allocated dynamically etc */
while(1)
{
MEM(CARD_LED_ADDRESS) = LEDON;
msleep(500);
MEM(CARD_LED_ADDRESS) = LEDOFF;
msleep(500);
uint32_t * vram1 = (uint32_t *) 0x1901800;
uint32_t * vram2 = (uint32_t *) 0x1785B00;
for (int i = 0; i < 540; i++)
{
vram1[i + i * 960/2] = 0x46ff465e;
vram2[i + i * 960/2] = 0x6d216d4b;
}
}
DryosDebugMsg(0, 15, "MEM(0xD2030108) =");
DryosDebugMsg(0, 15, MEM(0xD2030108));
DryosDebugMsg(0, 15, "MEM(0xD2030108) = %d", MEM(0xD2030108));
static void C8200008_log(int times, int delay)
{
for (int i = 0; i < times; i++)
{
DryosDebugMsg(0, 15, "MEM(0xC8200008) %d / %d = %d", i, times, MEM(0xC8200008));
msleep(delay);
}
}
C8200008_log(100, 20);
Page created in 0.088 seconds with 13 queries.