<?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: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7 in Embedded Intel Atom® Processors</title>
    <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193994#M393</link>
    <description>&lt;P&gt;Hi Gabriel,&lt;/P&gt;&lt;P&gt;Please help here if we have any updates.&lt;/P&gt;&lt;P&gt;This has become a blocker for me and I look forward to you for urgent resolution.&lt;/P&gt;&lt;P&gt;reg.&lt;/P&gt;&lt;P&gt;-prajose&lt;/P&gt;</description>
    <pubDate>Mon, 03 Aug 2015 09:42:44 GMT</pubDate>
    <dc:creator>pjohn8</dc:creator>
    <dc:date>2015-08-03T09:42:44Z</dc:date>
    <item>
      <title>Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193990#M389</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using Intel's NUC Baytrail device and have connected a temperature sensor to the I2C interface.&lt;/P&gt;&lt;P&gt;Platform: Intel NUC Baytrail device&lt;/P&gt;&lt;P&gt;Operating System: Windows 7&lt;/P&gt;&lt;P&gt;Testing interface: I2C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Situations handled:&lt;/P&gt;&lt;P&gt;1. Changed BIOS from UEFI to Secured mode&lt;/P&gt;&lt;P&gt;2.  Step 1 helped to show the I2C device in the device manager.&lt;/P&gt;&lt;P&gt;3. Writing a test application program to perform read / write operation&lt;/P&gt;&lt;P&gt;4. Createfile() returns the handle of the temperature sensor device&lt;/P&gt;&lt;P&gt;5. The write / read operation does not succeed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the code for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// LocalPortTestApp.cpp : Defines the entry point for the console application.&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# include "stdafx.h"&lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include "I2Cpublic.h"&lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using namespace std;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/**&lt;/P&gt;&lt;P&gt;* These are the generic rights used in serial com port open&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;# define S_GENERIC_READ           (0x80000000UL)       ///&lt;/P&gt;&lt;P&gt;# define S_GENERIC_WRITE          (0x40000000UL)       ///&lt;/P&gt;&lt;P&gt;# define S_GENERIC_EXECUTE        (0x20000000UL)       ///&lt;/P&gt;&lt;P&gt;# define S_GENERIC_ALL            (0x10000000U1L)      ///&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/**&lt;/P&gt;&lt;P&gt;* Constants used in serial com port open&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;# define S_CREATE_NEW          1UL    ///&lt;/P&gt;&lt;P&gt;# define S_CREATE_ALWAYS       2UL    ///&lt;/P&gt;&lt;P&gt;# define S_OPEN_EXISTING       3UL    ///&lt;/P&gt;&lt;P&gt;# define S_OPEN_ALWAYS         4UL    ///&lt;/P&gt;&lt;P&gt;# define S_TRUNCATE_EXISTING   5UL    ///&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*****************************************************************************************************&lt;/P&gt;&lt;P&gt;*                               GENERAL TYPEDEF&lt;/P&gt;&lt;P&gt;****************************************************************************************************/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;typedef unsigned char         sUINT8;     ///&amp;lt;8 bit variable&lt;/P&gt;&lt;P&gt;typedef signed char           sINT8;      ///&amp;lt;7 bit variable&lt;/P&gt;&lt;P&gt;typedef unsigned char*        sUINT8P;    ///&amp;lt;8 bit variable pointer&lt;/P&gt;&lt;P&gt;typedef const unsigned char*  sCUINT8P;   ///&amp;lt;8 bit constant variable pointer&lt;/P&gt;&lt;P&gt;typedef short int             sINT16;     ///&amp;lt;15 bit variable&lt;/P&gt;&lt;P&gt;typedef unsigned short        sUINT16;    ///&amp;lt;16 bit variable&lt;/P&gt;&lt;P&gt;typedef unsigned short*       sUINT16P;   ///&amp;lt;16 bit variable pointer&lt;/P&gt;&lt;P&gt;typedef long                  sINT32;     ///&amp;lt;31 bit variable&lt;/P&gt;&lt;P&gt;typedef unsigned long         sUINT32;    ///&amp;lt;32 bit variable&lt;/P&gt;&lt;P&gt;typedef unsigned long*        sUINT32P;   ///&amp;lt;32 bit variable pointer&lt;/P&gt;&lt;P&gt;typedef const unsigned long*  sCUINT32P;  ///&amp;lt;32 bit variable pointer&lt;/P&gt;&lt;P&gt;typedef float                 sFLOAT;     ///&lt;/P&gt;&lt;P&gt;typedef double                sDOUBLE;    ///&lt;/P&gt;&lt;P&gt;typedef unsigned char         sBOOL;      ///&amp;lt;8 bit variable&lt;/P&gt;&lt;P&gt;typedef void*                 sVOIDP;     ///&lt;/P&gt;&lt;P&gt;typedef const void*           sCVOIDP;    ///&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/**&lt;/P&gt;&lt;P&gt;* ENUM for ERROR CODE which will be return value&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;enum returnStatus&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;    S_SUCCESS = 0,                   ///&lt;/P&gt;&lt;P&gt;    S_ERROR_FAILURE = 1,             ///&lt;/P&gt;&lt;P&gt;    S_ERROR_PORT_OPEN = 2,           ///&lt;/P&gt;&lt;P&gt;    S_ERROR_PORT_CLOSE = 3,          ///&lt;/P&gt;&lt;P&gt;    S_ERROR_CONFIG_PORT = 4,         ///&lt;/P&gt;&lt;P&gt;    S_ERROR_READ_BUFFER = 5,         ///&lt;/P&gt;&lt;P&gt;    S_ERROR_WRITE_BUFFER = 6,        ///&lt;/P&gt;&lt;P&gt;    S_ERROR_ARGUMENT = 7,            ///&lt;/P&gt;&lt;P&gt;    S_ERROR_CHANNEL_INVALID = 8,     ///&lt;/P&gt;&lt;P&gt;    S_ERROR_TIME_OUT = 9,            ///&lt;/P&gt;&lt;P&gt;    S_ERROR_SEND = 10,               ///&lt;/P&gt;&lt;P&gt;    S_ERROR_SEQUENCE = 11,           ///&lt;/P&gt;&lt;P&gt;    S_ERROR_PORT_ACQUIRED = 14,      ///&lt;/P&gt;&lt;P&gt;    S_ERROR_HANDLE_MISMATCH = 15,    ///&lt;/P&gt;&lt;P&gt;    S_BOOT_MODE = 16                 ///&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# define BUF_SIZE  50&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int main(int argc, char* argv[])&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    returnStatus eResult = S_ERROR_PORT_OPEN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    GUID *i2cGuid = const_cast(&amp;amp;I2C_LPSS_INTERFACE_GUID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    HDEVINFO hDevInfo;&lt;/P&gt;&lt;P&gt;    SP_DEVINFO_DATA devInfoData;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    HANDLE i2c_Handle = HANDLE(NULL); ///&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;    hDevInfo = SetupDiGetClassDevs(i2cGuid, NULL, NULL, DIGCF_DEVICEINTERFACE | DIGCF_ALLCLASSES);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if(hDevInfo == INVALID_HANDLE_VALUE)&lt;/P&gt;&lt;P&gt;    {&lt;/P&gt;&lt;P&gt;        return S_ERROR_FAILURE;&lt;/P&gt;&lt;P&gt;    }&lt;/P&gt;&lt;P&gt;    else&lt;/P&gt;&lt;P&gt;    {&lt;/P&gt;&lt;P&gt;        std::cout &amp;lt;&amp;lt; "SetupDiGetClassDevs is Successfull.\n";&lt;/P&gt;&lt;P&gt;    }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    devInfoData.cbSize = sizeof(SP_DEVINFO_DATA);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SP_DEVICE_INTERFACE_DATA devInterfData = { 0 };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    devInterfData.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    devInfoData.cbSize = sizeof(SP_DEVINFO_DATA);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DWORD i = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if(SetupDiEnumDeviceInterfaces(hDevInfo, NULL, i2cGuid, i, &amp;amp;devInterfData))&lt;/P&gt;&lt;P&gt;    {&lt;/P&gt;&lt;P&gt;        DWORD size = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        if (!SetupDiGetDeviceInterfaceDetail(hDevInfo, &amp;amp;devInterfData, NULL, 0, &amp;amp;size, 0))&lt;/P&gt;&lt;P&gt;        {           &lt;/P&gt;&lt;P&gt;            if (GetLastError() == ERROR_NO_MORE_ITEMS)&lt;/P&gt;&lt;P&gt;            {&lt;/P&gt;&lt;P&gt;                eResult = S_SUCCESS;&lt;/P&gt;&lt;P&gt;                while(1);&lt;/P&gt;&lt;P&gt;                return 0;&lt;/P&gt;&lt;P&gt;            }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            PSP_DEVICE_INTERFACE_DETAIL_DATA pInterfaceDetailData = (PSP_DEVICE_INTERFACE_DETAIL_DATA)LocalAlloc(LPTR, size);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            pInterfaceDetailData-&amp;gt;cbSize = sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            if (!SetupDiGetDeviceInterfaceDetail(hDevInfo, &amp;amp;devInterfData, pInterfaceDetailData, size, &amp;amp;size, &amp;amp;devInfoData))&lt;/P&gt;&lt;P&gt;            {&lt;/P&gt;&lt;P&gt;                std :: cout &amp;lt;&amp;lt; "SetupDiGet...&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2015 09:47:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193990#M389</guid>
      <dc:creator>pjohn8</dc:creator>
      <dc:date>2015-07-28T09:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193991#M390</link>
      <description>&lt;P&gt;Hello prajose_john,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to the Intel Embedded Community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have attached the following document  &lt;B&gt;Intel® AtomTM Processor E3800 &lt;/B&gt;&lt;B&gt;Windows 7 IO Driver &lt;/B&gt;&lt;B&gt;Software Developer's Manual&lt;/B&gt;, which you may find useful in troubleshooting this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to offer you the best support possible, and  as this issue is related to an Intel NUC, and  to software development on Windows I recommend you to post this issue in the following websites:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Intel Windows Developer Zone Forum &lt;A href="https://software.intel.com/en-us/forum"&gt;https://software.intel.com/en-us/forum&lt;/A&gt; &lt;A href="https://software.intel.com/en-us/forum"&gt;https://software.intel.com/en-us/forum&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The NUC community &lt;A href="https://communities.intel.com/community/tech/nuc"&gt;https://communities.intel.com/community/tech/nuc&lt;/A&gt; Forum: Intel NUC | Intel Communities&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jimmy.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2015 16:20:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193991#M390</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-07-29T16:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193992#M391</link>
      <description>&lt;P&gt;Hi Jimmy,&lt;/P&gt;&lt;P&gt;Nice to meet you over discussion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had this copy and have derived the code that has been shared based on the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a few questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;BIOS changed from UEFI to Secured mode on Intel NUC board. This helped to populate the I2C device in the device manager on Windows 7. Does this mean the I2C driver worked?&lt;/LI&gt;&lt;LI&gt;The Createfile() returns the handle of the device (temperature sensor) a slave device connected to I2C interface on board. Does this mean the driver is working?&lt;/LI&gt;&lt;LI&gt;We check with oscilloscope after the above process and on probing, we do not see the clock line up. Does this mean the driver is not responding to the application?&lt;/LI&gt;&lt;LI&gt;There is DMA enabled in Windows 7. Has this any impact on this?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again in anticipation of your support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Reg.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;-prajose john&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2015 07:13:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193992#M391</guid>
      <dc:creator>pjohn8</dc:creator>
      <dc:date>2015-07-30T07:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193993#M392</link>
      <description>&lt;P&gt;Hello Prajose John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have consulted this case and we will let you know any update as soon as possible.&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel Thomas&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2015 14:51:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193993#M392</guid>
      <dc:creator>Gabriel_T_Intel</dc:creator>
      <dc:date>2015-07-31T14:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193994#M393</link>
      <description>&lt;P&gt;Hi Gabriel,&lt;/P&gt;&lt;P&gt;Please help here if we have any updates.&lt;/P&gt;&lt;P&gt;This has become a blocker for me and I look forward to you for urgent resolution.&lt;/P&gt;&lt;P&gt;reg.&lt;/P&gt;&lt;P&gt;-prajose&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2015 09:42:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193994#M393</guid>
      <dc:creator>pjohn8</dc:creator>
      <dc:date>2015-08-03T09:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193995#M394</link>
      <description>&lt;P&gt;Hello prajose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have consulted this case, we are still investigating.&lt;/P&gt;&lt;P&gt;We will contact you as soon as we have an answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel Thomas&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2015 15:51:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193995#M394</guid>
      <dc:creator>Gabriel_T_Intel</dc:creator>
      <dc:date>2015-08-03T15:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193996#M395</link>
      <description>&lt;P&gt;Hello, Prajose.&lt;/P&gt;&lt;P&gt;Thanks for using the Embedded Community.  I noticed that you have a Basic account with the EDC.  If you would like to apply for a Privileged account which allows you to more easily access Intel confidential content on the EDC, please go to &lt;A href="http://www.intel.com/content/www/us/en/embedded/embedded-design-center-support.html"&gt;http://www.intel.com/content/www/us/en/embedded/embedded-design-center-support.html&lt;/A&gt; Intel® Embedded Design Center Contact and Support and click on "Manage your Intel Profile" in the MANAGE YOUR ACCOUNT section of the page. You can then click on "upgrade to Privileged" and complete the form to apply for Privileged.  Let us know when you have done this and we'll expedite the review process for you.  Hope this is helpful as you'll have access to more content, tools and services.  LynnZ.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2015 00:50:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193996#M395</guid>
      <dc:creator>Natalie_Z_Intel</dc:creator>
      <dc:date>2015-08-04T00:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193997#M396</link>
      <description>&lt;P&gt;Hi LynnZ,&lt;/P&gt;&lt;P&gt;Nice to connect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I click on upgrade to Privileged, it does not show me any page to fill in anything. It directly displays the product and has getting started part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg.&lt;/P&gt;&lt;P&gt;-prajose&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2015 07:24:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193997#M396</guid>
      <dc:creator>pjohn8</dc:creator>
      <dc:date>2015-08-04T07:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193998#M397</link>
      <description>&lt;P&gt;Hello, Prajose!  Glad we were able to work together to get your access issue resolved.  Hope this expanded level of access helps!  LynnZ.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2015 17:44:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193998#M397</guid>
      <dc:creator>Natalie_Z_Intel</dc:creator>
      <dc:date>2015-08-04T17:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193999#M398</link>
      <description>&lt;P&gt;Hi Gabriel,&lt;/P&gt;&lt;P&gt;I am running out of time with my deliverables.&lt;/P&gt;&lt;P&gt;Can you please introduce me to NUC team. I have this as blocker for my deliverables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Intel has multi million dollar business waiting on closure of this issue. This is for Intel's Signage IOT BU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please expedite this issue and help me resolve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind reg.&lt;/P&gt;&lt;P&gt;-prajose&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2015 07:34:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/193999#M398</guid>
      <dc:creator>pjohn8</dc:creator>
      <dc:date>2015-08-05T07:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194000#M399</link>
      <description>&lt;P&gt;Hello Prajose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have sent you an email. Please confirm if you have received it.&lt;/P&gt;&lt;P&gt;The escalation team will be in contact via email to through to completion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel Thomas.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2015 19:11:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194000#M399</guid>
      <dc:creator>Gabriel_T_Intel</dc:creator>
      <dc:date>2015-08-05T19:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194001#M400</link>
      <description>&lt;P&gt;Thanks Gabriel.&lt;/P&gt;&lt;P&gt;I have received the mail and hope to get some resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BIOS you have sent me will not have any impact. On the same NUC device, I have windriver running and I2C works fine.&lt;/P&gt;&lt;P&gt;In case of windows, I have issues. I have my reasons to worry on the I2C driver for NUC for windows 7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg.&lt;/P&gt;&lt;P&gt;-prajose&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2015 05:40:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194001#M400</guid>
      <dc:creator>pjohn8</dc:creator>
      <dc:date>2015-08-07T05:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194002#M401</link>
      <description>&lt;P&gt;Hi Gabriel,&lt;/P&gt;&lt;P&gt;I have upgraded the BIOS which you suggested and following is the outcome:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to &lt;B&gt;DE3815TYBE_TechProdSpec07.pdf &lt;/B&gt;, Section : 2.3 BIOS Security Jumper, Table : 26, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Setting the Jumper Position as 1-2 and updating the BIOS Version with 2042.bio file. After upgrade the Keyboard and Mouse is not working. After rebooting the system and pressing F2, it will go to BIOS Change settings. &lt;/LI&gt;&lt;LI&gt;Setting the jumper position as 2-3 we observe that the BIOS Recovery will not work and on pressing F2, It does not go to BIOS Change settings. The Keyboard and Mouse was not working.&lt;/LI&gt;&lt;LI&gt;Setting the jumper position as none then it is asking for Press [F4] BIOS Recovery and By pressing F4 it shows the message that power down your board. Then again when restarting  the board the Keyboard and Mouse does not work and By Pressing F2 it goes to BIOS Change Settings.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; The above are 3 different behavior when changing the Jumper positions. Moreover, we also attempted with remote session but that also did not pass.&lt;/P&gt;&lt;P&gt;In other words, the BIOS 2042.bio upgrade did not work.&lt;/P&gt;&lt;P&gt;reg.&lt;/P&gt;&lt;P&gt;-prajose&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2015 12:05:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194002#M401</guid>
      <dc:creator>pjohn8</dc:creator>
      <dc:date>2015-08-07T12:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194003#M402</link>
      <description>&lt;P&gt;Hello, Prajose.  We understand that your case was escalated through another means within into our Ravi has been in contact with you.  Please continue to work with Ravi or the other resources that he has engaged with.  Have a great day!  LynnZ.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2015 20:17:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194003#M402</guid>
      <dc:creator>Natalie_Z_Intel</dc:creator>
      <dc:date>2015-08-13T20:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing a temperature sensor over I2C interface on Intel NUC Baytrail device with Windows 7</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194004#M403</link>
      <description>&lt;P&gt;Hi LynnZ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to do something very similar, and I have an additional question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where can I get the Programming Guide and the associated i2cxxxx.h files?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2015 19:19:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Atom-Processors/Accessing-a-temperature-sensor-over-I2C-interface-on-Intel-NUC/m-p/194004#M403</guid>
      <dc:creator>PStof2</dc:creator>
      <dc:date>2015-10-23T19:19:13Z</dc:date>
    </item>
  </channel>
</rss>

