<font face="Arial, Verdana">No normally not. But you can easily program that. For next dev release I have added this</font>
<font face="Arial, Verdana">#ifdef Z_PROBE_RUN_AFTER_EVERY_PROBE</font>
<font face="Arial, Verdana"> GCode::executeFString(PSTR(Z_PROBE_RUN_AFTER_EVERY_PROBE));</font>
<font face="Arial, Verdana">#endif</font>
<font face="Arial, Verdana"> }</font>
<font face="Arial, Verdana"> float distance = static_cast<float>(sum) * invAxisStepsPerMM[Z_AXIS] / static_cast<float>(repeat) + EEPROM::zProbeHeight();</font>
the top 3 lines are new, serach for last line in BedLeveling.cpp around line 587 to add it yourself. With that you just define
#define Z_PROBE_RUN_AFTER_EVERY_PROBE "M340 S1000\nG4 P0"
or whatever you need to run after each probe.