diff --git a/gemhardware/interface/amc/ttc.h b/gemhardware/interface/amc/ttc.h
index 2fec07f6c5050bee8fa34d71d0f5781bdd906885..9252202c2b76b0f4f98873039b24de592782bed0 100644
--- a/gemhardware/interface/amc/ttc.h
+++ b/gemhardware/interface/amc/ttc.h
@@ -23,11 +23,17 @@ namespace hardware {
             struct sendSingleHardReset : public xhal::common::Method {
                 void operator()() const;
             };
+
             /// @brief Send a single ReSync with the TTC generator
             struct sendSingleReSync : public xhal::common::Method {
                 void operator()() const;
             };
 
+            /// @brief Send a (pseudo) ReSync sequence with the TTC generator
+            struct sendReSyncSequence : public xhal::common::Method {
+                void operator()() const;
+            };
+
             /// @brief Reset the TTC module
             struct ttcModuleReset : public xhal::common::Method {
                 void operator()() const;
diff --git a/gemhardware/rpc/gemhardwarerpc.cpp b/gemhardware/rpc/gemhardwarerpc.cpp
index 04243318f4ac3f5ab34811d93beb90cac6003b5d..e4445302db7e407e1e5f6b9601b19a2fb1cda748 100644
--- a/gemhardware/rpc/gemhardwarerpc.cpp
+++ b/gemhardware/rpc/gemhardwarerpc.cpp
@@ -99,6 +99,7 @@ void module_init(ModuleManager* modmgr)
     xhal::server::registerMethod<gem::hardware::amc::ttc::getL1AEnable>(modmgr);
     xhal::server::registerMethod<gem::hardware::amc::ttc::getL1AID>(modmgr);
     xhal::server::registerMethod<gem::hardware::amc::ttc::getL1ARate>(modmgr);
+    xhal::server::registerMethod<gem::hardware::amc::ttc::sendReSyncSequence>(modmgr);
     xhal::server::registerMethod<gem::hardware::amc::ttc::sendSingleHardReset>(modmgr);
     xhal::server::registerMethod<gem::hardware::amc::ttc::sendSingleReSync>(modmgr);
     xhal::server::registerMethod<gem::hardware::amc::ttc::setL1AEnable>(modmgr);
diff --git a/gemhardware/src/amc/ttc.cpp b/gemhardware/src/amc/ttc.cpp
index 32250d8264cddd6aab81a4c1ad9d99f3c7fa09e5..110be56667d30072886ec05210e5386994ebfcf0 100644
--- a/gemhardware/src/amc/ttc.cpp
+++ b/gemhardware/src/amc/ttc.cpp
@@ -38,6 +38,19 @@ void gem::hardware::amc::ttc::sendSingleReSync::operator()() const
     }
 }
 
+void gem::hardware::amc::ttc::sendReSyncSequence::operator()() const
+{
+    if (utils::readReg("BEFE.GEM.TTC.GENERATOR.ENABLE")) {
+        utils::writeReg("BEFE.GEM.TTC.GENERATOR.SINGLE_RESYNC", 0x1);
+        utils::writeReg("BEFE.GEM.TTC.GENERATOR.SINGLE_EC0", 0x1);
+    } else {
+        utils::writeReg("BEFE.GEM.TTC.GENERATOR.ENABLE", 0x1);
+        utils::writeReg("BEFE.GEM.TTC.GENERATOR.SINGLE_RESYNC", 0x1);
+        utils::writeReg("BEFE.GEM.TTC.GENERATOR.SINGLE_EC0", 0x1);
+        utils::writeReg("BEFE.GEM.TTC.GENERATOR.ENABLE", 0x0);
+    }
+}
+
 void gem::hardware::amc::ttc::ttcModuleReset::operator()() const
 {
     utils::writeReg("BEFE.GEM.TTC.CTRL.MODULE_RESET", 0x1);
diff --git a/gemmanagers/src/AMCManager.cpp b/gemmanagers/src/AMCManager.cpp
index 990a1668ad719df39fc4cb05843428b641a90274..f7b19f6736cffce7bb9802b0312045adfb0d5f12 100644
--- a/gemmanagers/src/AMCManager.cpp
+++ b/gemmanagers/src/AMCManager.cpp
@@ -346,11 +346,11 @@ void gem::managers::AMCManager::startAction()
     if (m_ttc_generator_enabled) {
         // Reset the OC, BC, and EC
         m_connection->call<gem::hardware::amc::ttc::ttcModuleReset>();
-        m_connection->call<gem::hardware::amc::ttc::sendSingleReSync>();
+        m_connection->call<gem::hardware::amc::ttc::sendReSyncSequence>();
     } else {
         m_connection->call<gem::hardware::amc::ttc::setL1AEnable>(true);
         // FIXME: Remove when the AMC13 in loopback mode will send a ReSync
-        m_connection->call<gem::hardware::amc::ttc::sendSingleReSync>();
+        m_connection->call<gem::hardware::amc::ttc::sendReSyncSequence>();
     }
 
     m_connection->call<gem::hardware::amc::ttc::ttcCounterReset>();