<?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>topic Re: Is it possible to send two kinds of values at the same time in real-time? in MCUXpresso IDE</title>
    <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981586#M4966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello sir.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using app_demo_dpahu_sensormonitor.&lt;BR /&gt;I am trying to implement 2 external temperature sensors in the app.&lt;/P&gt;&lt;P&gt;The example source of SensorBoard app provided by NXP is required.&lt;/P&gt;&lt;P&gt;Can you provide APP (source:&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;sensormonitor&lt;/SPAN&gt;)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Apr 2020 08:06:12 GMT</pubDate>
    <dc:creator>choi0216</dc:creator>
    <dc:date>2020-04-21T08:06:12Z</dc:date>
    <item>
      <title>Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981584#M4964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear NXP developers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My name is Minjae, and I have a question.&lt;/P&gt;&lt;P&gt;I am using nhs3152 NFC chip to measure current value in real-time.&lt;/P&gt;&lt;P&gt;I made a code to send electrical current value to the smartphone in real-time using tlogger file.&lt;/P&gt;&lt;P&gt;By the way, is it possible to send the temperature value and electrical current value at the same time in real-time?&lt;/P&gt;&lt;P&gt;I changed the temperature.c file to send the electrical current value to the smartphone in real-time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much !&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Minjae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2020 06:50:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981584#M4964</guid>
      <dc:creator>gmj1901</dc:creator>
      <dc:date>2020-01-08T06:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981585#M4965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Minjae,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An example how&amp;nbsp;values of different sensors are returned in&amp;nbsp;one response can be found in the demo application&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;app_demo_dpahu_sensormonitor&lt;/SPAN&gt;, which is available in the NHS3100 SDK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I presume you are adapting the demo application&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;app_demo_dp_tlogger&lt;/SPAN&gt;, using the latest NHS3152 SDK.)&lt;/P&gt;&lt;P&gt;How I would approach it:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;msghandler_protocol.h&lt;BR /&gt;&lt;/SPAN&gt;Create a new application specific message id in the enum &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;APP_MSG_ID&lt;/SPAN&gt;, and create the command and response structures.&lt;BR /&gt;&lt;EM&gt;or&lt;/EM&gt;&lt;BR /&gt;Adapt an existing one, such as&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;APP_MSG_ID_MEASURETEMPERATURE&lt;/SPAN&gt;, and append the extra sensor data to the response structure.&lt;/LI&gt;&lt;LI&gt;In &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;msghandler.c&lt;/SPAN&gt;&lt;BR /&gt;Add a new entry to&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;App_CmdHandler&lt;/SPAN&gt; - don't forget to&amp;nbsp;increment&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;APP_MSG_ID_COUNT&lt;/SPAN&gt; as well - and implement the handler function.&lt;BR /&gt;&lt;EM&gt;or&lt;/EM&gt;&lt;BR /&gt;&lt;SPAN&gt;When in your use case a temperature value and a current value are always to be taken jointly, you can r&lt;/SPAN&gt;euse an existing one such as&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;MeasureTemperatureHandler&lt;/SPAN&gt;. That one calls &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;Temperature_Measure&lt;/SPAN&gt;, which you can extend to first start a temperature measurement (calling &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;TMeas_Measure&lt;/SPAN&gt;) and then&amp;nbsp;start a current conversion.&amp;nbsp;The function&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;SendMeasureTemperatureResponse&lt;/SPAN&gt; then creates the non-immediate response not unconditionally, but when both temperature and current conversions&amp;nbsp;have been finished.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SDK provides to full firmware sources, and you are free to adapt tit to your liking. Just adapt it&amp;nbsp;to whatever makes sense to you. Of course, mind, adapting the messaging also means you will need to change the parsing on the host side (the phone APP or the PC Python script or the like).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;BR /&gt;Dries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2020 10:04:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981585#M4965</guid>
      <dc:creator>driesmoors</dc:creator>
      <dc:date>2020-01-08T10:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981586#M4966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello sir.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using app_demo_dpahu_sensormonitor.&lt;BR /&gt;I am trying to implement 2 external temperature sensors in the app.&lt;/P&gt;&lt;P&gt;The example source of SensorBoard app provided by NXP is required.&lt;/P&gt;&lt;P&gt;Can you provide APP (source:&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;sensormonitor&lt;/SPAN&gt;)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2020 08:06:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981586#M4966</guid>
      <dc:creator>choi0216</dc:creator>
      <dc:date>2020-04-21T08:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981587#M4967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes! If you have downloaded the current latest SDK (v12.3), you can find the full sources under &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;&amp;lt;SDK&amp;gt;/sw/XF&lt;/SPAN&gt;. The solution file for the board monitor APP can be found at&amp;nbsp;&lt;SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;&amp;lt;SDK&amp;gt;/sw/XF/Monitor/Monitor.sln&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kind&amp;nbsp;regards,&lt;BR /&gt;Dries.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2020 18:14:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981587#M4967</guid>
      <dc:creator>driesmoors</dc:creator>
      <dc:date>2020-04-21T18:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981588#M4968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Dries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for quick response.&lt;/P&gt;&lt;P&gt;I am looking for an android version to use in android studio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards.&lt;/P&gt;&lt;P&gt;Choi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2020 01:44:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981588#M4968</guid>
      <dc:creator>choi0216</dc:creator>
      <dc:date>2020-04-22T01:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981589#M4969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Choi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm very sorry, this we do not have on offer. We provide documentation on the communication layer, interface and protocol, and a demo mobile implementation using XF.&amp;nbsp;If you need to create your own implementation using Java in Android Studio, we&amp;nbsp;hope the provided material is enough to get you started.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;BR /&gt;Dries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2020 06:33:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981589#M4969</guid>
      <dc:creator>driesmoors</dc:creator>
      <dc:date>2020-04-22T06:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981590#M4970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dries.&lt;/P&gt;&lt;P&gt;Thanks a lot for your help.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;( &amp;lt;SDK&amp;gt;/sw/XF/Monitor/Monitor.sln&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;. )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Many errors occur in visuals.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Is there an Development environment for this?(Version, offset ... etc)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2020 08:50:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981590#M4970</guid>
      <dc:creator>choi0216</dc:creator>
      <dc:date>2020-04-23T08:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to send two kinds of values at the same time in real-time?</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981591#M4971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The current released XF code is intended to be used with MS VS 2017. An update of the code is being worked upon, and will target MS VS 2019. I cannot give you a release date&amp;nbsp;for this, unfortunately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;BR /&gt;Dries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2020 20:47:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Is-it-possible-to-send-two-kinds-of-values-at-the-same-time-in/m-p/981591#M4971</guid>
      <dc:creator>driesmoors</dc:creator>
      <dc:date>2020-04-23T20:47:10Z</dc:date>
    </item>
  </channel>
</rss>

