<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Does the PPS code work for the new INS example for OpenIMU?]]></title><description><![CDATA[<p>Hi,</p>
<p>I have put break points on TIM2_IRQHandler and I am never seeing this code called.</p>
<p>I have set the the following as per the docs:</p>
<p>void initUserDataProcessingEngine()<br />
{<br />
InitUserAlgorithm();         // default implementation located in file user_algorithm.c<br />
platformEnableGpsPps(TRUE);  // Init PPS sync engine<br />
}</p>
<p>What am I doing wrong?</p>
<p>Regards,</p>
<p>Simonrob</p>
]]></description><link>https://forum.aceinna.com//topic/158/does-the-pps-code-work-for-the-new-ins-example-for-openimu</link><generator>RSS for Node</generator><lastBuildDate>Thu, 11 Jun 2026 14:01:47 GMT</lastBuildDate><atom:link href="https://forum.aceinna.com//topic/158.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 26 Mar 2020 16:28:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Thu, 26 Mar 2020 16:28:48 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>I have put break points on TIM2_IRQHandler and I am never seeing this code called.</p>
<p>I have set the the following as per the docs:</p>
<p>void initUserDataProcessingEngine()<br />
{<br />
InitUserAlgorithm();         // default implementation located in file user_algorithm.c<br />
platformEnableGpsPps(TRUE);  // Init PPS sync engine<br />
}</p>
<p>What am I doing wrong?</p>
<p>Regards,</p>
<p>Simonrob</p>
]]></description><link>https://forum.aceinna.com//post/745</link><guid isPermaLink="true">https://forum.aceinna.com//post/745</guid><dc:creator><![CDATA[simon-rob]]></dc:creator><pubDate>Thu, 26 Mar 2020 16:28:48 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Fri, 27 Mar 2020 00:46:33 GMT]]></title><description><![CDATA[<p>Hi Simonrob,</p>
<p>Could you tell me more details about what you want to do? So, I can get a firmware engineer to help you.</p>
<p>Dong</p>
]]></description><link>https://forum.aceinna.com//post/746</link><guid isPermaLink="true">https://forum.aceinna.com//post/746</guid><dc:creator><![CDATA[Dong xiaoguang]]></dc:creator><pubDate>Fri, 27 Mar 2020 00:46:33 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Fri, 27 Mar 2020 13:43:02 GMT]]></title><description><![CDATA[<p>Dong,</p>
<p>I am trying to work out if the pps code actually works and what it is doing, I have the IMU connected to a Ublox zed-f9p with the pps connect to pin 2 .  I now can see that the interrupt is being serviced, but I can't work out in the code as bits are commented out if the timestamp is being adjusted accordingly.</p>
<p>Looking at in DataAcquisitionSupport.c and ONE_PPS_EXTI_IRQHandler.</p>
<p>Why is ppsDetected commented out?</p>
<p>void ONE_PPS_EXTI_IRQHandler(void)<br />
{<br />
OSEnterISR();</p>
<pre><code>if(platformIsGpsPPSUsed()){
</code></pre>
<p>//         ppsDetected  = 1;<br />
}</p>
<pre><code>EXTI-&gt;PR = ONE_PPS_EXTI_LINE;  ///&lt; Clear the interrupt bit

OSExitISR();
</code></pre>
<p>}</p>
<p>Simon</p>
]]></description><link>https://forum.aceinna.com//post/747</link><guid isPermaLink="true">https://forum.aceinna.com//post/747</guid><dc:creator><![CDATA[simon-rob]]></dc:creator><pubDate>Fri, 27 Mar 2020 13:43:02 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Sun, 29 Mar 2020 17:23:59 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.aceinna.com//uid/2781">@dong</a> bump</p>
]]></description><link>https://forum.aceinna.com//post/748</link><guid isPermaLink="true">https://forum.aceinna.com//post/748</guid><dc:creator><![CDATA[simon-rob]]></dc:creator><pubDate>Sun, 29 Mar 2020 17:23:59 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Tue, 31 Mar 2020 00:39:48 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.aceinna.com//uid/92">@simon-rob</a> , I will find the firmware engineer to answer your question.</p>
]]></description><link>https://forum.aceinna.com//post/751</link><guid isPermaLink="true">https://forum.aceinna.com//post/751</guid><dc:creator><![CDATA[Dong xiaoguang]]></dc:creator><pubDate>Tue, 31 Mar 2020 00:39:48 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Tue, 31 Mar 2020 00:50:44 GMT]]></title><description><![CDATA[<p>1 PPS signal is processed inside timer5 interrupt routine.<br />
ppsDetected is set inside function  platformSetPpsTimeStamp(ts)</p>
]]></description><link>https://forum.aceinna.com//post/752</link><guid isPermaLink="true">https://forum.aceinna.com//post/752</guid><dc:creator><![CDATA[Andrey Bondarev]]></dc:creator><pubDate>Tue, 31 Mar 2020 00:50:44 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Mon, 06 Apr 2020 16:15:36 GMT]]></title><description><![CDATA[<p>@Andrey Bondarev,</p>
<p>I can see how ppsDetected is set in Timer5, but as far as I can tell timer5 isn't triggered by the pps input on pin 2.</p>
<p>Timer0 gets trigger by the input on pin 2.</p>
<p>My question as I  can't figure it out,  is how is the timestamp being synchronised by the pps input?</p>
<p>Many thanks,</p>
<p>Simon</p>
]]></description><link>https://forum.aceinna.com//post/756</link><guid isPermaLink="true">https://forum.aceinna.com//post/756</guid><dc:creator><![CDATA[simon-rob]]></dc:creator><pubDate>Mon, 06 Apr 2020 16:15:36 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Fri, 10 Apr 2020 08:29:45 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.aceinna.com//uid/48">@Andrey-Bondarev</a></p>
<p>Bump</p>
]]></description><link>https://forum.aceinna.com//post/759</link><guid isPermaLink="true">https://forum.aceinna.com//post/759</guid><dc:creator><![CDATA[simon-rob]]></dc:creator><pubDate>Fri, 10 Apr 2020 08:29:45 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Tue, 21 Apr 2020 10:16:51 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.aceinna.com//uid/48">@Andrey-Bondarev</a> <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.aceinna.com//uid/3">@Dong-xiaoguang</a>  Any updates?</p>
]]></description><link>https://forum.aceinna.com//post/768</link><guid isPermaLink="true">https://forum.aceinna.com//post/768</guid><dc:creator><![CDATA[simon-rob]]></dc:creator><pubDate>Tue, 21 Apr 2020 10:16:51 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Wed, 29 Apr 2020 09:38:04 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.aceinna.com//uid/48">@Andrey-Bondarev</a> <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.aceinna.com//uid/3">@Dong-xiaoguang</a></p>
<p>Are you guys still working?</p>
<p>Please can you confirm that the time stamp is being synchronised by the external PPS signal as I cannot see how it is?</p>
<p>Please correct me if I am wrong?</p>
]]></description><link>https://forum.aceinna.com//post/772</link><guid isPermaLink="true">https://forum.aceinna.com//post/772</guid><dc:creator><![CDATA[simon-rob]]></dc:creator><pubDate>Wed, 29 Apr 2020 09:38:04 GMT</pubDate></item><item><title><![CDATA[Reply to Does the PPS code work for the new INS example for OpenIMU? on Thu, 30 Apr 2020 00:52:25 GMT]]></title><description><![CDATA[<p>PPS sync should work properly as long as 1PPS pulse provided to PPS pin.<br />
Proper timestamp  so far supported only for ublox binary nav-pvt message.</p>
]]></description><link>https://forum.aceinna.com//post/773</link><guid isPermaLink="true">https://forum.aceinna.com//post/773</guid><dc:creator><![CDATA[Andrey Bondarev]]></dc:creator><pubDate>Thu, 30 Apr 2020 00:52:25 GMT</pubDate></item></channel></rss>