Hey, there!
I´ve been struggling to use a Samsung Nx-mini with RTK.
It´s ~300ms delay to take a photo makes the RTK useless.
This camera doesn’t have a conventional hotshoe or other type of feedback which could be used to trigger the RTK camera input pin.
To solve this, it seems to me that identifying the moment when the camera starts writing on the sd card is the way to go.
Not the easiest solution, but the most universal and precise for the smaller effort.
So from what I gathered SD cards use a Serial Peripheral Interface. (SPI) (https://en.wikipedia.org/wiki/Serial_Peripheral_Interface#Mode_Numbers)
I don’t know how is the behavior of the communication, but I’m hoping that the Master Output Slave Input (MOSI) pin only sees activity when a picture is taken, and that the delay is smaller than 1ms after the picture is taken. Otherwise, identifying when it is really writing an image will get quite a bit harder.
Considering this, it might be possible to use interrupt routines to a pin connected to the sd card MOSI, identifying the write event and triggering the RTK. I’m looking for the simplest solution, a way to detect writing activity without disturbing the SD Card communication.
Any suggestions on the circuit between the sd card and microcontroller?
Any obvious problems I’m not seeing?