<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>S32KのトピックRe: S32K312 ADC continuous conversion Problems</title>
    <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703953#M26010</link>
    <description>&lt;P&gt;&lt;A href="mailto:Hi@rexoplans" target="_blank"&gt;Hi@rexoplans&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;there is a demo you can refer to:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/S32K-Knowledge-Base/Example-S32K344-PIT-BTCU-ADC-DMA-DS3-4-RTD100/ta-p/1435324" target="_self"&gt;https://community.nxp.com/t5/S32K-Knowledge-Base/Example-S32K344-PIT-BTCU-ADC-DMA-DS3-4-RTD100/ta-p/1435324&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Aug 2023 02:41:37 GMT</pubDate>
    <dc:creator>Senlent</dc:creator>
    <dc:date>2023-08-14T02:41:37Z</dc:date>
    <item>
      <title>S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703833#M26002</link>
      <description>&lt;P&gt;Hello everyone, I'm using S32K312 microcontroller and I want continuos conversion mode ADC for multi channel but I didnt activate CC(Continous conversion) mode. How can I activate CC mode ? Or, have S32K312 CC mode ?( I wasnt sure&amp;nbsp; because&amp;nbsp; Ref manual say to MC have these mode but I didnt see enable button(for s32ds ) or enable value on struct to firmware.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#adc&amp;nbsp; #s32k312&lt;/P&gt;</description>
      <pubDate>Sat, 12 Aug 2023 14:18:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703833#M26002</guid>
      <dc:creator>rexoplans</dc:creator>
      <dc:date>2023-08-12T14:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703876#M26004</link>
      <description>&lt;P&gt;Yes, the S32K312 microcontroller does support continuous conversion mode for ADC. You can enable it by setting the ADC_CFG1[ADLPC] bit to 1. This will enable the low power configuration and continuous conversions.&lt;/P&gt;&lt;P&gt;Here is a code snippet that shows how you can enable continuous conversion mode:&lt;/P&gt;&lt;PRE&gt; ADC0-&amp;gt;CFG1 |= ADC_CFG1_ADLPC_MASK; // Enable low power configuration ADC0-&amp;gt;SC3 |= ADC_SC3_ADCO_MASK; // Enable continuous conversion &lt;/PRE&gt;&lt;P&gt;Also, if you want to use multiple channels in continuous conversion mode, you need to use the ADC's hardware trigger feature. You can set up a periodic timer interrupt to trigger the ADC conversion for different channels.&lt;/P&gt;&lt;P&gt;Here is a code snippet that shows how you can set up a hardware trigger:&lt;/P&gt;&lt;PRE&gt; ADC0-&amp;gt;SC2 |= ADC_SC2_ADTRG_MASK; // Enable hardware trigger &lt;/PRE&gt;&lt;P&gt;Then, in your timer interrupt handler, you can select the ADC channel to be converted:&lt;/P&gt;&lt;PRE&gt; ADC0-&amp;gt;SC1[0] = ADC_SC1_ADCH(channel); // Select ADC channel &lt;/PRE&gt;&lt;P&gt;Remember to replace 'channel' with the actual channel number you want to convert.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Aug 2023 16:42:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703876#M26004</guid>
      <dc:creator>ramprakash08</dc:creator>
      <dc:date>2023-08-13T16:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703884#M26006</link>
      <description>&lt;P&gt;Thanks for your response. I have one more question.&amp;nbsp;How can I set up a periodic trigger. I tried to do it with PIT but failed. Also, when I want to use multichannel, do I set each channel separately?&lt;/P&gt;</description>
      <pubDate>Sun, 13 Aug 2023 18:30:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703884#M26006</guid>
      <dc:creator>rexoplans</dc:creator>
      <dc:date>2023-08-13T18:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703953#M26010</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@rexoplans" target="_blank"&gt;Hi@rexoplans&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;there is a demo you can refer to:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/S32K-Knowledge-Base/Example-S32K344-PIT-BTCU-ADC-DMA-DS3-4-RTD100/ta-p/1435324" target="_self"&gt;https://community.nxp.com/t5/S32K-Knowledge-Base/Example-S32K344-PIT-BTCU-ADC-DMA-DS3-4-RTD100/ta-p/1435324&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 02:41:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1703953#M26010</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2023-08-14T02:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1704117#M26022</link>
      <description>&lt;P&gt;I tried a system like example but&amp;nbsp; The system didnt work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 07:15:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1704117#M26022</guid>
      <dc:creator>rexoplans</dc:creator>
      <dc:date>2023-08-14T07:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1704131#M26024</link>
      <description>&lt;P&gt;The example you gave is valid for the s32k1 series. Unfortunately, the register addresses you specified are not available in s32k3.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 07:30:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1704131#M26024</guid>
      <dc:creator>rexoplans</dc:creator>
      <dc:date>2023-08-14T07:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1704141#M26026</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@rexoplans" target="_blank"&gt;Hi@rexoplans&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Please ignore ramprakash08's answer, this should be an AI.&lt;BR /&gt;This routine is based on S32K344, there should be no problem，If there is a problem, please describe your problem in detail&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 07:36:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1704141#M26026</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2023-08-14T07:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1705027#M26087</link>
      <description>Acctually, PIT havent document on s32ds. It shows the general documents of GPT, but there is no information about the functions of PIT in the documents.</description>
      <pubDate>Tue, 15 Aug 2023 12:59:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1705027#M26087</guid>
      <dc:creator>rexoplans</dc:creator>
      <dc:date>2023-08-15T12:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1705278#M26102</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@rexoplans" target="_blank"&gt;Hi@rexoplans&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;S32K3XXRM-rev7-&amp;gt;Chapter 69 Periodic Interrupt Timer&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_0-1692150812609.png" style="width: 510px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/236574i2B54EC6833E5AFB0/image-dimensions/510x151?v=v2" width="510" height="151" role="button" title="Senlent_0-1692150812609.png" alt="Senlent_0-1692150812609.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 01:54:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1705278#M26102</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2023-08-16T01:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: S32K312 ADC continuous conversion Problems</title>
      <link>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1708189#M26262</link>
      <description>Thanks for response</description>
      <pubDate>Mon, 21 Aug 2023 08:32:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K312-ADC-continuous-conversion-Problems/m-p/1708189#M26262</guid>
      <dc:creator>rexoplans</dc:creator>
      <dc:date>2023-08-21T08:32:41Z</dc:date>
    </item>
  </channel>
</rss>

