<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>UP Squared Windows — upcommunity</title>
        <link>https://forum.up-community.org/</link>
        <pubDate>Fri, 08 May 2026 11:00:25 +0000</pubDate>
        <language>en</language>
            <description>UP Squared Windows — upcommunity</description>
    <atom:link href="https://forum.up-community.org/categories/up-squared-windows/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Unable to retreive the analog values from connected IR sensor</title>
        <link>https://forum.up-community.org/discussion/34876/unable-to-retreive-the-analog-values-from-connected-ir-sensor</link>
        <pubDate>Thu, 18 Jul 2024 10:41:50 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>lonedeveloper</dc:creator>
        <guid isPermaLink="false">34876@/discussions</guid>
        <description><![CDATA[<p>I am working with the Upsquared maker board and interfacing a GP2Y0A21 IR sensor using the EAPI library.</p>

<ul><li>I need to read analog values from a GPIO pin.</li>
<li>I am unable to find the appropriate funciton to retreive the analog values.</li>
</ul><h2 data-id="actual-program">Actual Program:</h2>

<pre spellcheck="false" tabindex="0">double GP2Y0A21::readADC() {
    uint32_t level = 0;
    //*/
    EApiStatus_t status = EApiGPIOGetLevel(EAPI_GPIO_GPIO_ID(gpioPin), 0xFFFFFFFF, &amp;level);
    if (status != EAPI_STATUS_SUCCESS) {
        std::cerr &lt;&lt; "Failed to read GPIO level! Status: " &lt;&lt; status &lt;&lt; std::endl;
        return 0;
    }
    std::cout &lt;&lt; "GPIO Level read from pin " &lt;&lt; gpioPin &lt;&lt; ": " &lt;&lt; level &lt;&lt; std::endl;
    return convertToAnalog(level);
    /*/
    uint32_t value = 0;
    EApiStatus_t status = EApiBoardGetValue(EAPI_GPIO_GPIO_ID(gpioPin), &amp;value); // Assuming adcChannelId maps to an appropriate EApiId_t value
    if (status != EAPI_STATUS_SUCCESS) {
        std::cerr &lt;&lt; "Failed to read ADC value! Status: " &lt;&lt; status &lt;&lt; std::endl;
        return 0.0;
    }
    std::cout &lt;&lt; "ADC Value read from channel " &lt;&lt; gpioPin &lt;&lt; ": " &lt;&lt; value &lt;&lt; std::endl;
    return convertToAnalog(value);


}

</pre>

<h2 data-id="challenges">Challenges:</h2>

<p>The first case get only the digital vlaues and <br />
the second case throws read error.</p>

<p>Kindly throw some light on this. I am thankful for your little guidance and needul help,</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows based I2C Read/Write Working Example using AAEON framework DLL?</title>
        <link>https://forum.up-community.org/discussion/2341/windows-based-i2c-read-write-working-example-using-aaeon-framework-dll</link>
        <pubDate>Thu, 05 Oct 2017 23:52:29 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>NoelStephens</dc:creator>
        <guid isPermaLink="false">2341@/discussions</guid>
        <description><![CDATA[I have been combing through the forums looking for all of the various posts to examples of code and libraries used to access the AAEON framework libraries in order to access I2C devices on Windows 10.  So far, it would *seem* that there is no Windows platform (to date) that has any example (pre-compiled binaries and/or source code) on accessing I2C devices.<br />
The only examples I have found show how to turn a GPIO pin from a low to high state (or vice versa) but nothing that shows *any* I2C functionality working on an UP2 board (or any Up board).<br /><br />
Is this a known issue?  If so, is there *any* time frame on getting it working under *any* version of Windows 10/Server 2016/IoT Core?<br /><br />
Very familiar with I2C communication, have a UWP application that communicates to several I2C devices in 10ms to 100ms intervals (reading and/or writing) and is verified working/stable running on RPI2&amp;3 with Windows IoT Core.<br /><br />
We are most interested in getting the Windows 10 or Windows Server 2016 (what is running currently on our UP2Board) I2C communication working.<br />
Have already installed the AAEON framework and am successfully communicating to the general framework calls (i.e. get board info etc), can change the state of GPIO pins, but cannot get any I2C devices that we have in our lab to be seen with the current drivers plus the AAEON framework install.<br /><br />
Any ETA, links to beta drivers/examples, or the like that might help rectify this issue (unless it is just a known issue and still not working) would be greatly appreciated... been waiting awhile for this functionality so I can show how awesome the UpBoard is vs. other similar devices in the market place.  <img src="https://forum.up-community.org/resources/emoji/smile.png" title=":)" alt=":)" height="20" />]]>
        </description>
    </item>
    <item>
        <title>Accessing UART on Win10 Enterprise ltsc</title>
        <link>https://forum.up-community.org/discussion/4752/accessing-uart-on-win10-enterprise-ltsc</link>
        <pubDate>Tue, 21 Sep 2021 13:48:05 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Boesling</dc:creator>
        <guid isPermaLink="false">4752@/discussions</guid>
        <description><![CDATA[<p>Hi Folks,<br />
I'm new with my up2 and I have installed Windows 10 enterprise 2019 ltsc. Now I wrote a small test Desktop programm with c#<a href="https://forum.up-community.org/profile/VS2017" rel="nofollow">@VS2017</a> to test the uart communication via the 40 Pin Header (8,10), but I cannot find it with "SerialPort.GetPortNames". The Device Manager shows under Ports 2 COM-Ports UART Sub device (COM2) and UART Sub device(COM4).<br />
If I try to connect the serial port, I get a IOException.<br />
Can anyone help me on this?<br />
Thank you.</p>
]]>
        </description>
    </item>
    <item>
        <title>How to use GPIOs on UpSquared Windows</title>
        <link>https://forum.up-community.org/discussion/5374/how-to-use-gpios-on-upsquared-windows</link>
        <pubDate>Tue, 16 Jan 2024 16:08:52 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>ivan25</dc:creator>
        <guid isPermaLink="false">5374@/discussions</guid>
        <description><![CDATA[<p>Hi everyone,</p>

<p>I have an Up Squared board, and my goal is to utilize its hardware, focusing on the SPI and UART functions. However, before diving into those, I'm starting by attempting to control the GPIOs, but unfortunately, I've encountered some issues.</p>

<p>Here are the steps I've taken so far:</p>

<p>1) Entered BIOS settings and changed the OS Selection to "Windows 10 IoT Core."<br />
2) Installed the Up Squared Windows 10 drivers, which I downloaded from this link <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fup-squared-windows-10-64-bit-drivers%2F">https://downloads.up-community.org/download/up-squared-windows-10-64-bit-drivers/</a> .<br />
3) Installed the Up SDK, available here <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fup-sdk-for-windows-10-and-windows-iot%2F">https://downloads.up-community.org/download/up-sdk-for-windows-10-and-windows-iot/</a> .</p>

<p>In the Device Manager, I can see the following:</p>

<p><img src="https://us.v-cdn.net/6030431/uploads/editor/ob/qa7leur2t3q2.png" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/ob/qa7leur2t3q2.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/ob/qa7leur2t3q2.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/ob/qa7leur2t3q2.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/ob/qa7leur2t3q2.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/ob/qa7leur2t3q2.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/ob/qa7leur2t3q2.png 2000w, https://us.v-cdn.net/6030431/uploads/editor/ob/qa7leur2t3q2.png" sizes="100vw" /></p>

<p>However, when I run the GpioTool, downloaded from a forum post, I receive the message:<br />
"Error: GPIO is not available on this system."</p>

<p><img src="https://us.v-cdn.net/6030431/uploads/editor/85/rb4h0omiebnj.png" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/85/rb4h0omiebnj.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/85/rb4h0omiebnj.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/85/rb4h0omiebnj.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/85/rb4h0omiebnj.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/85/rb4h0omiebnj.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/85/rb4h0omiebnj.png 2000w, https://us.v-cdn.net/6030431/uploads/editor/85/rb4h0omiebnj.png" sizes="100vw" /></p>

<p>This is the OS version I am using</p>

<p><img src="https://us.v-cdn.net/6030431/uploads/editor/nn/5p5o0i6y3x5n.png" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/nn/5p5o0i6y3x5n.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/nn/5p5o0i6y3x5n.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/nn/5p5o0i6y3x5n.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/nn/5p5o0i6y3x5n.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/nn/5p5o0i6y3x5n.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/nn/5p5o0i6y3x5n.png 2000w, https://us.v-cdn.net/6030431/uploads/editor/nn/5p5o0i6y3x5n.png" sizes="100vw" /></p>

<p>What might be the issue? Any help or guidance would be greatly appreciated! Thanks in advance!</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 IOT Enterprise LTSC activation failed</title>
        <link>https://forum.up-community.org/discussion/4903/windows-10-iot-enterprise-ltsc-activation-failed</link>
        <pubDate>Thu, 28 Apr 2022 08:21:49 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>ftt</dc:creator>
        <guid isPermaLink="false">4903@/discussions</guid>
        <description><![CDATA[<p>After installing Windows using the USB key provided with the license sticker/code I followed the activation procedure at<br /><a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fup-shop.org%2Fmedia%2Fproductattach%2Fw%2Fi%2Fwin10_license_activation_qsg_20210907.pdf">https://up-shop.org/media/productattach/w/i/win10_license_activation_qsg_20210907.pdf</a><br />
but the windows 10 activation didn’t work, it gave me the following error<br /><img src="https://us.v-cdn.net/6030431/uploads/editor/xu/xvsx53gyx8r4.png" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/xu/xvsx53gyx8r4.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/xu/xvsx53gyx8r4.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/xu/xvsx53gyx8r4.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/xu/xvsx53gyx8r4.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/xu/xvsx53gyx8r4.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/xu/xvsx53gyx8r4.png 2000w, https://us.v-cdn.net/6030431/uploads/editor/xu/xvsx53gyx8r4.png" sizes="100vw" /><br />
how can I proceed?</p>
]]>
        </description>
    </item>
    <item>
        <title>Event 10016 DistributedCOM crashing Windows 10</title>
        <link>https://forum.up-community.org/discussion/2119/event-10016-distributedcom-crashing-windows-10</link>
        <pubDate>Wed, 02 Aug 2017 19:33:41 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Robert Shelton</dc:creator>
        <guid isPermaLink="false">2119@/discussions</guid>
        <description><![CDATA[Over the last couple of days I have experienced multiple crashes of my Up2 / Win 10 due to an 10016 DistributedCOM error. The system shuts down - no blue screen, just goes black. Each time I have difficulty restarting due to repeated crashes during restart. I have found that removing the DP connection allows the machine to restart successfully on the next try (I am using both an HDMI display and a second HDMI monitor via a DP to HDMI active converter). I also experienced, after system reboot, that Windows immediately crashed when I plugged in the DP adapter. After a couple of repair / reboot cycles, I could not use the DP. The direct HDMI display works fine. This further suggests that the problem is related to DP drivers.<br /><br />
Here is the detail from Event Viewer:<br /><br />
Log Name:      System<br />
Source:        Microsoft-Windows-DistributedCOM<br />
Date:          8/2/2017 2:18:45 PM<br />
Event ID:      10016<br />
Task Category: None<br />
Level:         Error<br />
Keywords:      Classic<br />
User:          LOCAL SERVICE<br />
Computer:      Up2<br />
Description:<br />
The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID {6B3B8D23-FA8D-40B9-8DBD-B950333E2C52} and APPID {4839DDB7-58C2-48F5-8283-E1D1807D0D7D} to the user NT AUTHORITY\LOCAL SERVICE SID (S-1-5-19) from address LocalHost (Using LRPC) running in the application container Unavailable SID (Unavailable). This security permission can be modified using the Component Services administrative tool.<br /><br />
Event Xml:<br /><span>&lt;Event xmlns="<a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=http%3A%2F%2Fschemas.microsoft.com%2Fwin%2F2004%2F08%2Fevents%2Fevent%22%26gt">http://schemas.microsoft.com/win/2004/08/events/event"&amp;gt</a>;<br />
&lt;System&gt;<br />
&lt;Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" /&gt;<br />
&lt;EventID Qualifiers="0"&gt;10016&lt;/EventID&gt;<br />
&lt;Version&gt;0&lt;/Version&gt;<br />
&lt;Level&gt;2&lt;/Level&gt;<br />
&lt;Task&gt;0&lt;/Task&gt;<br />
&lt;Opcode&gt;0&lt;/Opcode&gt;<br />
&lt;Keywords&gt;0x8080000000000000&lt;/Keywords&gt;<br />
&lt;TimeCreated SystemTime="2017-08-02T18:18:45.705970900Z" /&gt;<br />
&lt;EventRecordID&gt;7961&lt;/EventRecordID&gt;<br />
&lt;Correlation /&gt;<br />
&lt;Execution ProcessID="836" ThreadID="1248" /&gt;<br />
&lt;Channel&gt;System&lt;/Channel&gt;<br />
&lt;Computer&gt;Up2&lt;/Computer&gt;<br />
&lt;Security UserID="S-1-5-19" /&gt;<br />
&lt;/System&gt;<br />
&lt;EventData&gt;<br />
&lt;Data Name="param1"&gt;application-specific&lt;/Data&gt;<br />
&lt;Data Name="param2"&gt;Local&lt;/Data&gt;<br />
&lt;Data Name="param3"&gt;Activation&lt;/Data&gt;<br />
&lt;Data Name="param4"&gt;{6B3B8D23-FA8D-40B9-8DBD-B950333E2C52}&lt;/Data&gt;<br />
&lt;Data Name="param5"&gt;{4839DDB7-58C2-48F5-8283-E1D1807D0D7D}&lt;/Data&gt;<br />
&lt;Data Name="param6"&gt;NT AUTHORITY&lt;/Data&gt;<br />
&lt;Data Name="param7"&gt;LOCAL SERVICE&lt;/Data&gt;<br />
&lt;Data Name="param8"&gt;S-1-5-19&lt;/Data&gt;<br />
&lt;Data Name="param9"&gt;LocalHost (Using LRPC)&lt;/Data&gt;<br />
&lt;Data Name="param10"&gt;Unavailable&lt;/Data&gt;<br />
&lt;Data Name="param11"&gt;Unavailable&lt;/Data&gt;<br />
&lt;/EventData&gt;<br />
&lt;/Event&gt;<br /></span><br />
This discussion seems promising: <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fsupport.microsoft.com%2Fen-us%2Fkb%2F899965">https://support.microsoft.com/en-us/kb/899965</a>. I followed the link posted by DarekWa. The Microsoft article was written for XP, so I had to translate to Win10. When I got to the dcomcnfg part of the process, a couple of dialogues popped up indicating that the offending application was not recorded; and asking if I wanted to record it. I responded yes to both, although that isn't mentioned in the posts. The offending application is ShellServiceHost in my case. If your Security tab is greyed out in dcomcnfg, look carefully at the second page of the postings. You may need to give administrators full_control  permissions to the key in the registry before proceeding to dcomcnfg. You may also need to change ownership of the application/key. In my case it was set to TrustedInstaller. I changed it to Administrators. Note this assumes your account is a member of Administrators. Don't forget to reboot after making registry changes.<br /><br />
R]]>
        </description>
    </item>
    <item>
        <title>Heatsink temperature of the Up2 v2</title>
        <link>https://forum.up-community.org/discussion/5114/heatsink-temperature-of-the-up2-v2</link>
        <pubDate>Tue, 14 Feb 2023 11:02:41 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>DaneA</dc:creator>
        <guid isPermaLink="false">5114@/discussions</guid>
        <description><![CDATA[<p>Heatsink is so hot that it cannot be held in arms - just checking if this is normal?</p>
]]>
        </description>
    </item>
    <item>
        <title>HOW CAN I WIPE THE INTERNAL STORAGE ON MY UP SQUARED BOARD?</title>
        <link>https://forum.up-community.org/discussion/5018/how-can-i-wipe-the-internal-storage-on-my-up-squared-board</link>
        <pubDate>Mon, 26 Sep 2022 11:36:13 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Alandum</dc:creator>
        <guid isPermaLink="false">5018@/discussions</guid>
        <description><![CDATA[<p>please assist</p>
]]>
        </description>
    </item>
    <item>
        <title>RHProxy Windows 10 IoT - GPIO Issues</title>
        <link>https://forum.up-community.org/discussion/4864/rhproxy-windows-10-iot-gpio-issues</link>
        <pubDate>Mon, 21 Feb 2022 19:05:56 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>TheZNerd</dc:creator>
        <guid isPermaLink="false">4864@/discussions</guid>
        <description><![CDATA[<p>Having a metric ton of issues attempting to make GPIO work in Windows 10 IoT mode. Some GPIO pins set to output mode don't output any voltage. The ones that do (specifically GPIO14 [BIOS 12, Pin 31]) go to a high state if the application closes or the pin is closed even though the BIOS is configured for "Low" default.</p>

<p>Any assistance would be greatly appreciated. Can provide code samples if necessary.</p>
]]>
        </description>
    </item>
    <item>
        <title>M.2 2230 WiFi/BT in the Up Square: success with Intel 7760 AC, failure with 8265</title>
        <link>https://forum.up-community.org/discussion/1895/m-2-2230-wifi-bt-in-the-up-square-success-with-intel-7760-ac-failure-with-8265</link>
        <pubDate>Thu, 08 Jun 2017 09:59:24 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Mialaret</dc:creator>
        <guid isPermaLink="false">1895@/discussions</guid>
        <description><![CDATA[Has anybody successfully installed an M.2 2230 WiFi/BlueTooth kit in the Up Square ?<br /><br />
If so, was any change in the BIOS necessary ?<br /><br />
t have installed an Intel 8265 M.2 2230 adapter but it does not even appear in the devices manager.<br /><br />
I know for a fact that the card works, having tested it in my Dell XPS 15.]]>
        </description>
    </item>
    <item>
        <title>Help to get &quot;M.2 2230 WiFi kit&quot; working</title>
        <link>https://forum.up-community.org/discussion/3739/help-to-get-m-2-2230-wifi-kit-working</link>
        <pubDate>Fri, 07 Jun 2019 10:03:18 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Toine</dc:creator>
        <guid isPermaLink="false">3739@/discussions</guid>
        <description><![CDATA[<p>Hi,<br />
I do not manage to get network access with the <strong><em>M.2 2230 WiFi kit</em></strong></p>

<p>I have an Up Squared board, running Windows Iot Core (version 10.0.17763.33).<br />
I plugged the M.2 2230 and it's antenna.</p>

<p>Then Windows Iot Core boots correctly, but I cannot see any change in network adapters / devices...</p>

<p>I tried to search for any missing drivers, but I couldn't find anything relevant.</p>

<p>Anyone can help ?</p>

<p>Note: I'm facing the same problem with the mPCIe LTE module kit</p>
]]>
        </description>
    </item>
    <item>
        <title>Is there information for UpBridge library?</title>
        <link>https://forum.up-community.org/discussion/4922/is-there-information-for-upbridge-library</link>
        <pubDate>Tue, 31 May 2022 07:44:42 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>RaRaBeaR</dc:creator>
        <guid isPermaLink="false">4922@/discussions</guid>
        <description><![CDATA[<p>By using sample code made by garyw (<a href="https://forum.up-community.org/discussion/4352/using-gpio-in-windows-10-winform-application)" rel="nofollow">https://forum.up-community.org/discussion/4352/using-gpio-in-windows-10-winform-application)</a>, I can  now use UpBridge universal windows library in WinForm.</p>

<p>However, I have no idea about the parameters of the methods. (Take GpioGetLevel(uint Id, uint Bitmask, out uint pLevel) for example, is Id GPIO No.? What is Bitmask for? )</p>

<p>I'll be very appreciated if anyone can share with me information for UpBridge library.</p>
]]>
        </description>
    </item>
    <item>
        <title>I2C/GPIO Access from .NET Core 6?</title>
        <link>https://forum.up-community.org/discussion/4833/i2c-gpio-access-from-net-core-6</link>
        <pubDate>Mon, 10 Jan 2022 04:57:49 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>TheZNerd</dc:creator>
        <guid isPermaLink="false">4833@/discussions</guid>
        <description><![CDATA[<p>WinRT support has been removed from .NET Core 5 and up: <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fdotnet%2Fcore%2Fcompatibility%2Finterop%2F5.0%2Fbuilt-in-support-for-winrt-removed">https://docs.microsoft.com/en-us/dotnet/core/compatibility/interop/5.0/built-in-support-for-winrt-removed</a></p>

<p>The SDK does not provide support for .NET Core 5 and up at this point - I cannot gain access to any GPIO using the standard namespaces (System.Device.I2c, System.Device.Gpio, etc.). Please advise - this makes the board unusable for any modern development.</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows IoT always reset to default password</title>
        <link>https://forum.up-community.org/discussion/4848/windows-iot-always-reset-to-default-password</link>
        <pubDate>Wed, 02 Feb 2022 08:40:45 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>fabioc</dc:creator>
        <guid isPermaLink="false">4848@/discussions</guid>
        <description><![CDATA[<p>Installed latest windows IoT version (Flash.ffu), installed on Squared board.<br />
If I change the Administrator password from the dashboard, the password is reset to default everytime I reboot the board.<br />
I'm using the same Windows version with Raspberry 3 and I don't have this problem.<br />
Any help appreciated!</p>
]]>
        </description>
    </item>
    <item>
        <title>How to permanently change the board&#39;s password in Windows 10 IoT Core?</title>
        <link>https://forum.up-community.org/discussion/4240/how-to-permanently-change-the-boards-password-in-windows-10-iot-core</link>
        <pubDate>Wed, 08 Apr 2020 20:52:50 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jletbetter</dc:creator>
        <guid isPermaLink="false">4240@/discussions</guid>
        <description><![CDATA[<p>Hello.  I can change the administrator password from Powershell or Windows Device Portal but it reverts back to the default when I reboot.  Does anyone know how to make this permanent?</p>
]]>
        </description>
    </item>
    <item>
        <title>What it the best way to install &quot;UpFrameworkSetup.zip&quot; for Windows 10 IoT Core?</title>
        <link>https://forum.up-community.org/discussion/4239/what-it-the-best-way-to-install-upframeworksetup-zip-for-windows-10-iot-core</link>
        <pubDate>Wed, 08 Apr 2020 20:25:40 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jletbetter</dc:creator>
        <guid isPermaLink="false">4239@/discussions</guid>
        <description><![CDATA[<p>Hello.  I recently installed the drivers from "UpFrameworkSetup.zip" into an Up^2 running Windows 10 IoT Core by copying the files over and running the following Powershell command.<br /><code spellcheck="false" tabindex="0">devcon install \windows\system32\upframework.inf root\upframework</code><br />
This resulted in the following warning which makes me wonder if this should be installed as part of the base image or using some other process?  Thanks for any help you can offer.</p>

<pre spellcheck="false" tabindex="0">********************************** WARNING **********************************
This Devcon command should only be used for development/testing purposes.
Driver package INF files should be added/updated into the offline OS image
using the supported offline package deployment process in order to ensure
that they are properly configured and integrated into the Windows OS state.
Updating driver package INF files from within the runtime environment of
this OS product may lead to unexpected OS state conflicts, resulting in the
inability to apply future updates to core OS components and/or drivers on
retail/consumer systems.
********************************** WARNING **********************************
</pre>
]]>
        </description>
    </item>
    <item>
        <title>i2c device found on win 10 x64 ?</title>
        <link>https://forum.up-community.org/discussion/4786/i2c-device-found-on-win-10-x64</link>
        <pubDate>Mon, 08 Nov 2021 15:44:22 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Kelo</dc:creator>
        <guid isPermaLink="false">4786@/discussions</guid>
        <description><![CDATA[<p>Hi, has anyone successfully found any i2c device on Up Sqared Win 10 x64 ? I can run UpI2cTEstTool demo, but no device found. Tried I2C0, I2C1, tried different sensors (MPU6050 board, BMP170,...), checked wiring 10x times, in BIOS pins are associated to I2C (not GPIO).</p>

<p>Thank you...</p>
]]>
        </description>
    </item>
    <item>
        <title>EDP Lane?</title>
        <link>https://forum.up-community.org/discussion/1161/edp-lane</link>
        <pubDate>Mon, 13 Feb 2017 06:39:21 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Ricky Seng</dc:creator>
        <guid isPermaLink="false">1161@/discussions</guid>
        <description><![CDATA[I'm planning out a 3 screen 4k monitor laptop build but, I'm unsure of of how many pins on the EDP connector my LCD should have; should it be a 2-lane edp connector with 30 pins or a 4-lane EDP connector with 40 pins? I've looked on the on the block diagram and it says that its a 41 pin?  Thanks in advance!]]>
        </description>
    </item>
    <item>
        <title>Does the Up Squared board support Windows 10 IoT Enterprise LTSC 2021</title>
        <link>https://forum.up-community.org/discussion/4787/does-the-up-squared-board-support-windows-10-iot-enterprise-ltsc-2021</link>
        <pubDate>Mon, 08 Nov 2021 22:12:25 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jmadeley</dc:creator>
        <guid isPermaLink="false">4787@/discussions</guid>
        <description><![CDATA[<p>Since Microsoft appears to have stopped the development of WIndows Iot Core, I am interested in migrating my application to Windows 10 IoT Enterprise LTSC 2021<br />
James</p>
]]>
        </description>
    </item>
    <item>
        <title>Use UART on Windows 10 LTSC</title>
        <link>https://forum.up-community.org/discussion/4008/use-uart-on-windows-10-ltsc</link>
        <pubDate>Mon, 04 Nov 2019 14:04:20 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Circk</dc:creator>
        <guid isPermaLink="false">4008@/discussions</guid>
        <description><![CDATA[<p>Hi everyone,<br />
I'm using Windows 10 Enterprise on UP squared board. My final goal is to use the UART in a .NET application. At the moment I'm doing simple tests to use the UART interfaces using Hercules terminal, but when i try to open the serial port it raise this error: "Error set Event control". Now i can use the uart0 (on the CN7 connector) 'in loop' (connecting tx and rx pins together). Instead, if i try to connect the uart0 to another PC using a USB TTL cable the communication doesn't work properly.<br />
Is there any setting to adjust in order to make it work? <br />
Could it be a driver problem? <br />
Any answer wil be very welcome<br />
Circk</p>
]]>
        </description>
    </item>
    <item>
        <title>How to use GPIO on windows 10  using c# ?</title>
        <link>https://forum.up-community.org/discussion/4764/how-to-use-gpio-on-windows-10-using-c</link>
        <pubDate>Wed, 29 Sep 2021 12:40:49 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>ips</dc:creator>
        <guid isPermaLink="false">4764@/discussions</guid>
        <description><![CDATA[<p>We recently bought a up squared board .  We have installed windows 10 LTSC that running perfect  on the board. <br />
We have download the sdk from up squared site, but we are not able to understand how to use it with c#.  Can you please provide us a working example in c# , and any relative documentation about it .</p>

<p>Thanks in Advance</p>
]]>
        </description>
    </item>
    <item>
        <title>It seems like that GPU is still not work properly nowday...</title>
        <link>https://forum.up-community.org/discussion/4751/it-seems-like-that-gpu-is-still-not-work-properly-nowday</link>
        <pubDate>Mon, 20 Sep 2021 10:17:09 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mopplayer</dc:creator>
        <guid isPermaLink="false">4751@/discussions</guid>
        <description><![CDATA[<p>Unfortunately, N4200's GPU is still not work properly. <br />
Even though the newest driver and BIOS are installed when launching a heavy GPU task.<br />
Reboot and reboot... forever!<br />
It is not worthy for this board.</p>
]]>
        </description>
    </item>
    <item>
        <title>Up Squared Flashing with eMMc</title>
        <link>https://forum.up-community.org/discussion/4289/up-squared-flashing-with-emmc</link>
        <pubDate>Wed, 20 May 2020 04:33:25 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>cameronh</dc:creator>
        <guid isPermaLink="false">4289@/discussions</guid>
        <description><![CDATA[<p>Hi I have been following this <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fwww.docs.microsoft.com%2Fen-us%2Fwindows%2Fiot-core%2Ftutorials%2Fquickstarter%2Fdevicesetup">link</a> to run Windows IoT Core on a Up Squared device.</p>

<p>I currently have the device running Windows IoT Core, but only via the usb stick. How do I install the Windows IoT Core Image from the usb stick to the eMMc so I don't need to run with the usb stick plugged in. Task 12 says to run the eMMC Installer script, but how do I run this from the Windows UI portal or via the computer's IP Address Portal.</p>

<p>Help would be much appreciated.</p>
]]>
        </description>
    </item>
    <item>
        <title>How to get Drivers for up squared board for windows 10 Enterprise (64 - bit)</title>
        <link>https://forum.up-community.org/discussion/4722/how-to-get-drivers-for-up-squared-board-for-windows-10-enterprise-64-bit</link>
        <pubDate>Thu, 12 Aug 2021 11:33:46 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>akshay</dc:creator>
        <guid isPermaLink="false">4722@/discussions</guid>
        <description><![CDATA[<p>How I can get following Drivers for up squared board for windows 10 Enterprise (64 - bit)<br />
 a. Chipset<br />
 b. Graphics<br />
 c. LAN<br />
 d. USB<br />
 e. TXE</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 Error: ATTEMPTED TO EXECUTE NON EXECUTE MEMORY</title>
        <link>https://forum.up-community.org/discussion/3438/windows-10-error-attempted-to-execute-non-execute-memory</link>
        <pubDate>Wed, 12 Dec 2018 18:44:25 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>rspock</dc:creator>
        <guid isPermaLink="false">3438@/discussions</guid>
        <description><![CDATA[<p>I have 20 up board with windows 10 release 1809 installed.</p>

<p>Randomly I get this error ATTEMPTED TO EXECUTE NON EXECUTE MEMORY during windows operation and the board get off.</p>

<p>Does anyone have a solution?</p>

<p><img src="https://us.v-cdn.net/6030431/uploads/editor/oa/2xaag79xv63o.jpg" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/oa/2xaag79xv63o.jpg 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/oa/2xaag79xv63o.jpg 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/oa/2xaag79xv63o.jpg 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/oa/2xaag79xv63o.jpg 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/oa/2xaag79xv63o.jpg 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/oa/2xaag79xv63o.jpg 2000w, https://us.v-cdn.net/6030431/uploads/editor/oa/2xaag79xv63o.jpg" sizes="100vw" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Windows IoT Installation</title>
        <link>https://forum.up-community.org/discussion/4572/windows-iot-installation</link>
        <pubDate>Mon, 01 Feb 2021 14:57:54 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mrkfortin</dc:creator>
        <guid isPermaLink="false">4572@/discussions</guid>
        <description><![CDATA[<p>I have been following the  instructions for installing a generic Windows IoT on the UP2.  The instructions say to hold down F7 when powering up the UP2 and this will allow the selection of a partition of choice.  I am not getting the option of selecting the partition.  Is there something else that I need to do?</p>

<p>Thank you.</p>
]]>
        </description>
    </item>
    <item>
        <title>SPI3 Pin Assignments</title>
        <link>https://forum.up-community.org/discussion/4560/spi3-pin-assignments</link>
        <pubDate>Sun, 24 Jan 2021 03:51:47 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>seanlAB</dc:creator>
        <guid isPermaLink="false">4560@/discussions</guid>
        <description><![CDATA[<p>Bios version: UP-APL01 R5.2  (UPA1AM52) 8/4/2020 allows for SPI3 to be enabled for pins 7, 13,15,29 and EXHAT Pins 2 and 4. What are the assignments for these pins? Which is MISO, MOSI, CLK, Chip select, etc.?</p>
]]>
        </description>
    </item>
    <item>
        <title>GPIO/I2C/UART Read write with Labview</title>
        <link>https://forum.up-community.org/discussion/4521/gpio-i2c-uart-read-write-with-labview</link>
        <pubDate>Thu, 17 Dec 2020 14:43:09 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>gfbotha</dc:creator>
        <guid isPermaLink="false">4521@/discussions</guid>
        <description><![CDATA[<p>Has anyone tried interfacing with the 40pin header (GPIO, I2C, SPI &amp; UART) from Labview? <br />
I had no problem interfacing with NI-DAQ or RS232 to USB converters.</p>
]]>
        </description>
    </item>
    <item>
        <title>GPIO Read/Write in windows IOT using c++ lib</title>
        <link>https://forum.up-community.org/discussion/4499/gpio-read-write-in-windows-iot-using-c-lib</link>
        <pubDate>Mon, 23 Nov 2020 13:34:53 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>SagiDadon</dc:creator>
        <guid isPermaLink="false">4499@/discussions</guid>
        <description><![CDATA[<p>Im trying to read and write from and to the GPIO pins on my up square board and I can find a lib for doing so..<br />
can someone guide me to  a cpp lib that I can use in my project? I want to be able to read and write form a windows console application project!</p>

<p>thank you in advance, cheers!</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows IoT Core BSP And Guide Download Link Expired</title>
        <link>https://forum.up-community.org/discussion/4440/windows-iot-core-bsp-and-guide-download-link-expired</link>
        <pubDate>Wed, 23 Sep 2020 21:00:01 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>bevanw</dc:creator>
        <guid isPermaLink="false">4440@/discussions</guid>
        <description><![CDATA[<p>When downloading the BSP &amp; Guide at the following link:<br /><a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fwindows-iot-core-bsp-and-guide%2F">https://downloads.up-community.org/download/windows-iot-core-bsp-and-guide/</a></p>

<p>The link returns:<br />
Sorry, the link has expired.</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>Upsquare control GPIO (Window version)</title>
        <link>https://forum.up-community.org/discussion/4434/upsquare-control-gpio-window-version</link>
        <pubDate>Tue, 15 Sep 2020 02:44:04 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>fads</dc:creator>
        <guid isPermaLink="false">4434@/discussions</guid>
        <description><![CDATA[<p>Hi, I am new to this forum. May I know  how to control GPIO pin for Upsquared board? Is Window version possible control it via Python?</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 2019 server support</title>
        <link>https://forum.up-community.org/discussion/4417/windows-2019-server-support</link>
        <pubDate>Thu, 27 Aug 2020 11:45:14 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jmmbarco</dc:creator>
        <guid isPermaLink="false">4417@/discussions</guid>
        <description><![CDATA[<p>Hi!<br />
I wonder if it is possible to install W2k19 Server (Core) in an UP2 board. Normally in a standard xx-ATX mobo it works if it is windows 10 is compatible. In my current audio transport I use it with W10 drivers and it works like a charm.<br />
Best,<br />
JM</p>
]]>
        </description>
    </item>
    <item>
        <title>PWM under windows 10 IOT</title>
        <link>https://forum.up-community.org/discussion/4364/pwm-under-windows-10-iot</link>
        <pubDate>Sun, 19 Jul 2020 20:13:56 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jmadeley</dc:creator>
        <guid isPermaLink="false">4364@/discussions</guid>
        <description><![CDATA[<p>I am trying to use PWM off the 40 pin connector under windows IOT.</p>

<p>I have installed the framework and compiled and deployed the UpDemoApp.  I can read the Board name, Board Manufacturer and Bios version, but I do not seem to be able to control outputs via the App.  I receive good status replies from the calls but the outputs do not change.</p>

<p>The PwmSetValue function call completes without error and I am able to retrieve the values using PwmGetValue, but the output does not pulse.   I cannot find documentation describing the   parameters for these functions: PWMBaseUnitInt, PWMBaseUnitFrac or PWMDutyCycle.</p>

<p>Advice on getting the GPIO working, particularly the PWM would be greatly appreciated!<br />
James</p>
]]>
        </description>
    </item>
    <item>
        <title>Unable to build WIndows IOT core Image</title>
        <link>https://forum.up-community.org/discussion/4398/unable-to-build-windows-iot-core-image</link>
        <pubDate>Mon, 10 Aug 2020 23:07:45 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jmadeley</dc:creator>
        <guid isPermaLink="false">4398@/discussions</guid>
        <description><![CDATA[<p>I am following instructions to build a Windows IOT Core  flash.ffu file.   <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fwindows-iot-core-bsp-and-guide%2F">https://downloads.up-community.org/download/windows-iot-core-bsp-and-guide/</a></p>

<p>I always get an error on the BuildImage Step</p>

<p>Package is missing from \?\C:\Program Files (x86)\Windows Kits\10\MSPackages\Retail\AMD64\fre\Microsoft.IoTUAP.IoTUAPProductSpecificFM~31bf3856ad364e35~AMD64~~.cab</p>

<p>Even when I do no customization and type the exact commands in the document screenshots,  I get the error.  (except your example has the BSPName as APLx64 instead of UPAPL in the Add-IotProduct step).  I have installed all the versions of the tools from the current <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fwindows-hardware%2Fmanufacture%2Fiot%2Fset-up-your-pc-to-customize-iot-core">https://docs.microsoft.com/en-us/windows-hardware/manufacture/iot/set-up-your-pc-to-customize-iot-core</a> web page.</p>
]]>
        </description>
    </item>
    <item>
        <title>GPIO Driver For Windows 10</title>
        <link>https://forum.up-community.org/discussion/3458/gpio-driver-for-windows-10</link>
        <pubDate>Sat, 22 Dec 2018 10:31:08 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>whitecider</dc:creator>
        <guid isPermaLink="false">3458@/discussions</guid>
        <description><![CDATA[<p>Can you give any update on the GPIO driver support for Windows 10? I am running Windows 10 IOT Enterprise on the UP squared board and would like to write c++ code in Visual Studio using the GPIO. As far as i can tell this is not available yet.</p>
]]>
        </description>
    </item>
    <item>
        <title>Upsquared Windows IOT Uwp Application GPIO</title>
        <link>https://forum.up-community.org/discussion/4311/upsquared-windows-iot-uwp-application-gpio</link>
        <pubDate>Mon, 08 Jun 2020 01:56:35 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>cameronh</dc:creator>
        <guid isPermaLink="false">4311@/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p>I have recently installed the UPFramework SDK on my UPSquared board running V5.0 Bios and Windows 10 IOT Core.  I have also set the bios OS Selection to Windows 10 IOT Core.</p>

<p>Firstly, I downloaded the UpDemoApp supplied in the Up Framework SDK folder, however I am unable to get <strong>UPBridge upb.BoardGetManufacture()</strong> to return any information about the board.</p>

<p>Secondly, I created my own basic LED UWP c# application which turned an LED on/off from High/Low on a GPIO pin. However, the application failed when it called this line <strong>LedPin.SetDriveMode(GpioPinDriveMode.Output)</strong>, it said it was unable to communication.</p>

<p>I have checked in Windows/System32 using command line <strong>pnputil enum-drivers</strong> and have noticed that the UPFramework.inf driver is installed on the board.</p>

<p>Has anyone got any recommendations?</p>

<p>Regards,</p>

<p>Cameron</p>
]]>
        </description>
    </item>
    <item>
        <title>Fresh Windows 10 Iot Ent2016 installation</title>
        <link>https://forum.up-community.org/discussion/4301/fresh-windows-10-iot-ent2016-installation</link>
        <pubDate>Sat, 30 May 2020 08:55:08 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>korzaun</dc:creator>
        <guid isPermaLink="false">4301@/discussions</guid>
        <description><![CDATA[<p>I've bought 2 months ago a UPS-EDGE-X70864-W01 unit with Windows 10 pre-installed.<br />
Due to numerous trials of installing and disinstalling software, now I've some troubles with overlapping libraries and dll so I would prefer to restart from a brand new installation of its O.S. (Windows 10 Iot Ent2016 installation).<br />
Is it possible? Where to find a iso image and what are the particular  steps to install on this device?<br />
Thanks,<br />
Davide</p>
]]>
        </description>
    </item>
    <item>
        <title>Unable to install Windows 10 IoT Enterprise</title>
        <link>https://forum.up-community.org/discussion/4299/unable-to-install-windows-10-iot-enterprise</link>
        <pubDate>Tue, 26 May 2020 10:28:29 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Kunigasisä</dc:creator>
        <guid isPermaLink="false">4299@/discussions</guid>
        <description><![CDATA[<p>I'm unable to install Windows 10 IoT Enterprise on my UP squared board. Installation seems to complete just fine but after reboot I get message that "computer restarted unexpectedly or encountered unexpected error" This keeps happening anyone encountered this?</p>
]]>
        </description>
    </item>
    <item>
        <title>UP Squared Windows IoT Core RS5 17763 Download Link Expired</title>
        <link>https://forum.up-community.org/discussion/4167/up-squared-windows-iot-core-rs5-17763-download-link-expired</link>
        <pubDate>Sun, 16 Feb 2020 01:25:05 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>ducphuc</dc:creator>
        <guid isPermaLink="false">4167@/discussions</guid>
        <description><![CDATA[<p>Hi, the UP Squared Windows IoT Core RS5 17763 download link is expired. I am unable to download it.</p>
]]>
        </description>
    </item>
    <item>
        <title>How to make GPIO Input and pulled up ?</title>
        <link>https://forum.up-community.org/discussion/4257/how-to-make-gpio-input-and-pulled-up</link>
        <pubDate>Mon, 20 Apr 2020 13:02:48 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Johann</dc:creator>
        <guid isPermaLink="false">4257@/discussions</guid>
        <description><![CDATA[<p>I would like to configure a GPIO pin on UP2 as the INT pin for my device, which is low active.<br />
I looked both BIOS settings and the UpDemoApp:<br /><img src="https://us.v-cdn.net/6030431/uploads/editor/6v/nj9kwm2e7v6z.png" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/6v/nj9kwm2e7v6z.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/6v/nj9kwm2e7v6z.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/6v/nj9kwm2e7v6z.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/6v/nj9kwm2e7v6z.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/6v/nj9kwm2e7v6z.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/6v/nj9kwm2e7v6z.png 2000w, https://us.v-cdn.net/6030431/uploads/editor/6v/nj9kwm2e7v6z.png" sizes="100vw" /></p>

<p>The pulled up option is only available for OUTPUT GPIO.<br />
Does anyone have similar experience on GPIO configuration? Is there anyway I can configure an GPIO to be INPUT, pulled up ?<br />
I hope it is not a limitation of UP2 board. If unfortunately so, are there any other UPboards that can support this ?</p>

<p>I'd appreciate for any suggestions, since I've stuck here for a long time ! <br />
Thanks !!</p>
]]>
        </description>
    </item>
    <item>
        <title>How to setup UP2 for Windows Debugging ?</title>
        <link>https://forum.up-community.org/discussion/4178/how-to-setup-up2-for-windows-debugging</link>
        <pubDate>Mon, 24 Feb 2020 03:33:23 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Johann</dc:creator>
        <guid isPermaLink="false">4178@/discussions</guid>
        <description><![CDATA[<p>Hi all,</p>

<p>I am running Windows 10.0.18363 on UP2, and would like to connect to other Windows host PC for debugging.<br />
I've follow the following link and tried connect with "10-pin connector CN7 (UART0)" with "3.3V FTDI Serial cable".</p>

<p><a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fwiki.up-community.org%2FSerial_console">https://wiki.up-community.org/Serial_console</a></p>

<p>On UP2, I've set up the debug settings as below :</p>

<p>bcdedit /debug on<br />
bcdedit /dbgsettings SERIAL DEBUGPORT:1 BAUDRATE:115200</p>

<p>But it doesn't seems to work with WinDbg. Does any one have similar experience on Windows debugging ? Should I use ethernet for Windows debugging on UP2 instead ?</p>

<p>Thanks !!</p>
]]>
        </description>
    </item>
    <item>
        <title>GPIO Access unter Win10 iot Core</title>
        <link>https://forum.up-community.org/discussion/4245/gpio-access-unter-win10-iot-core</link>
        <pubDate>Fri, 10 Apr 2020 09:12:46 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>srw2ho</dc:creator>
        <guid isPermaLink="false">4245@/discussions</guid>
        <description><![CDATA[<p>I recently installed an UP2 board under Windows 10 iot Core. This worked so far.<br />
Now I want to access the GPIO interface. There are some problems.</p>

<p>How can I access the GPIO interface in a UWP application under Win 10 ioT.</p>

<p>I have installed the framework "FrameworkSetup\iot", but I cannot access the GPIO interface.</p>

<p>The following call under C++<br />
m_GPIOController = GpioController::GetDefault();<br />
returns a null pointer.</p>

<p>How can I see if the driver is installed correctly (-&gt;UP Framework Service)<br />
Is the command devcon status "<a href="https://forum.up-community.org/profile/ROOT%5CDEVCON%5C0000%22" rel="nofollow">@ROOT\DEVCON\0000"</a>  correct for this.</p>

<p>Access to the PWM driver seems to work. Anyway, no zero pointer comes back.</p>

<p>What am I doing wrong, does something have to be set in the BIOS? I have not done anything.</p>

<p>Friendly greetings</p>

<p>Willi</p>
]]>
        </description>
    </item>
    <item>
        <title>What is included in the flash.ffu?</title>
        <link>https://forum.up-community.org/discussion/4244/what-is-included-in-the-flash-ffu</link>
        <pubDate>Thu, 09 Apr 2020 13:42:17 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jletbetter</dc:creator>
        <guid isPermaLink="false">4244@/discussions</guid>
        <description><![CDATA[<p>Hello.  I am wondering what is include in the flash.ffu?  Are there any kind of release notes that list what is included in each version of ffu?  I am specifically wondering about the <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Faaeon365-my.sharepoint.com%2Fpersonal%2Fsoftware_aaeon_eu%2F_layouts%2F15%2Fonedrive.aspx%3Fid%3D%252Fpersonal%252Fsoftware%255Faaeon%255Feu%252FDocuments%252FDownloads%252FWindows%252FWindows%2520IoT%2520Core%252FUP%2520Squared%252Frelease%252FUPSquared%255FWinIoTCore%255FRS5%255F17763%252Ezip%26parent%3D%252Fpersonal%252Fsoftware%255Faaeon%255Feu%252FDocuments%252FDownloads%252FWindows%252FWindows%2520IoT%2520Core%252FUP%2520Squared%252Frelease%26originalPath%3DaHR0cHM6Ly9hYWVvbjM2NS1teS5zaGFyZXBvaW50LmNvbS86dTovZy9wZXJzb25hbC9zb2Z0d2FyZV9hYWVvbl9ldS9FUUxxUmVicDM1MU1sSHo0bEc3M1VEb0JudG1NZ0pGMWR4cEt4Uko4eEdfa2lnP3J0aW1lPXk0cC1ESW5jMTBn">11/06/2019 flash.ffu</a> for the Up^2 board.  Does it include the 1) Intel BSP?; 2) the up framework?  I'm trying to get all the dependencies to have i2c, gpio, and spi working.  Thanks for your help!</p>
]]>
        </description>
    </item>
    <item>
        <title>Boot time and cooling</title>
        <link>https://forum.up-community.org/discussion/4187/boot-time-and-cooling</link>
        <pubDate>Fri, 28 Feb 2020 07:47:27 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>tjoAG</dc:creator>
        <guid isPermaLink="false">4187@/discussions</guid>
        <description><![CDATA[<p>Hi all,</p>

<p>What is the approx boot time of Windows 10 IoT Core on the UP Core Plus with minimum configuration? From power on until desktop is ready.</p>

<p>I gues the cooling option depends on how "hard" the processor is used and how the board is used. But are there any indication on the lowest possible CPU usage before it is needed?</p>

<p>Thomas</p>
]]>
        </description>
    </item>
    <item>
        <title>UP2 board with Windows 10 ioT as replacement for Raspberry Pi 3 B</title>
        <link>https://forum.up-community.org/discussion/4169/up2-board-with-windows-10-iot-as-replacement-for-raspberry-pi-3-b</link>
        <pubDate>Mon, 17 Feb 2020 16:49:06 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>srw2ho</dc:creator>
        <guid isPermaLink="false">4169@/discussions</guid>
        <description><![CDATA[<p>I intend to replace my Raspberry Pi 3B UWP-applications running on Win10 iot Core with your UP2 board.</p>

<p>Before I do this, I want to know if this will be possible without any problems.</p>

<p>I use the GPIO/I2C interface of the Raspberry Pi with C++ and C#. As interface to the hardware I use the following namespace Windows.Devices.Gpio, Windows.Devices.I2c, Windows.Devices.Pwm in my UWP apps</p>

<p>Does the board run stable under win10 iot in conjunction with the GPIO interface?</p>

<p>Can I use the GPIO interface of the board in the same way as if it were a Raspberry Pi or do I need to adapt my existing code?</p>

<p>What about the graphics support of the board under Win10 ioT Core?<br />
Is the grafic features fully supported under win 10 iot.</p>

<p>Best regards</p>

<p>WIlli Schneider</p>
]]>
        </description>
    </item>
    <item>
        <title>UART on the 40 pin conncetor</title>
        <link>https://forum.up-community.org/discussion/4190/uart-on-the-40-pin-conncetor</link>
        <pubDate>Mon, 02 Mar 2020 19:19:11 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>roujesky</dc:creator>
        <guid isPermaLink="false">4190@/discussions</guid>
        <description><![CDATA[<p>Has anyone been able to use the UART on the 40 pin connector?   I am looking at the UpBridge class from Aaeon and their example C# application (UpDemoApp) and there is no methods for the Uart.</p>

<p>thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>[SOLVED]Supported peripherals on Win10 IoT Core</title>
        <link>https://forum.up-community.org/discussion/4142/solved-supported-peripherals-on-win10-iot-core</link>
        <pubDate>Wed, 05 Feb 2020 12:41:43 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>tjoAG</dc:creator>
        <guid isPermaLink="false">4142@/discussions</guid>
        <description><![CDATA[<p>Dear all,</p>

<p>We are thinking of using the UP Squared in upcoming products. So we are still investigating in the  best suitable platform for us. We are mainly a software house and our strength in our software.<br />
So we need a stable hardware platform with support right out of the box. Specially by SDK's and API's and support.<br />
We need additional peripherals not given by the UP,  so we will make a baseboard with extended interfaces. Like SPI AD Convertes, Power meter chip and input and output.</p>

<p>We are primarily using C# as language of choice. But C++ when needed by real-time demands or where it may make sense. And OS will probally be Windows IoT Core.</p>

<p>So  my questions:</p>

<p><strong>SDK support:</strong><br />
Is all peripherals (I2C, SPI, ADC etc) supported by the SDK/API for all OS's (Linux, Windows 10, Windows 10 IoT Core etc) and for .NET Core 3 and c++? <br />
If not, are there any matrix or list where that info is available? If not it may be a good idea for the webpage.</p>

<p><strong>Custom boot splashscreen:</strong><br />
Is there support for silent or custom splash screen? So when our customer power of there device they dont see any BIOS Splash screen or Windows screen, but boot directly into there application.</p>

<p>Thomas Johansen</p>
]]>
        </description>
    </item>
    <item>
        <title>[SOLVED/ANSWERED]Windows GPIO using NodeJS</title>
        <link>https://forum.up-community.org/discussion/4127/solved-answered-windows-gpio-using-nodejs</link>
        <pubDate>Wed, 22 Jan 2020 16:54:20 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>randybreck</dc:creator>
        <guid isPermaLink="false">4127@/discussions</guid>
        <description><![CDATA[<p>I have used NodeJS to manipulate GPIOs on the Pi running Linux with no problem.  How do I access the GPIO pins using NodeJS through Windows 10?  Totally perplexed here.  In Linux everything is a file - even the GPIO.  Windows - no clue.</p>
]]>
        </description>
    </item>
    <item>
        <title>Up Squared locking up when left on for long periods</title>
        <link>https://forum.up-community.org/discussion/3596/up-squared-locking-up-when-left-on-for-long-periods</link>
        <pubDate>Tue, 19 Mar 2019 18:07:45 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>tallen</dc:creator>
        <guid isPermaLink="false">3596@/discussions</guid>
        <description><![CDATA[<p>Hello,</p>

<p>We have several Up Squared boards (PN: UPS-APLP4-A10-0864) with Windows 10 Pro installed, and are having a problem where they tend to lock up and become unresponsive after being left on for long periods (1-4 days).  Nothing shows up in Event Viewer, and Reliability History is clear.  We've tried shutting off all sleep and hibernation settings, in both Windows and the BIOS, and we're using the recommended 6A power supplies.  Has anyone else experienced this?  Any possible solutions we should try?</p>
]]>
        </description>
    </item>
    <item>
        <title>Sata port/controller hot plug support UPS-APLP4-A10-0864</title>
        <link>https://forum.up-community.org/discussion/3706/sata-port-controller-hot-plug-support-ups-aplp4-a10-0864</link>
        <pubDate>Wed, 15 May 2019 11:33:27 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Fereffe</dc:creator>
        <guid isPermaLink="false">3706@/discussions</guid>
        <description><![CDATA[<p>Hi all,</p>

<p>does the sata port/controller of the UP Squared Pentium Quad Core 8GB memory/64GB eMMC (Intel N4200) support HOT PLUG?</p>

<p>I need to attach the device to the sata port after the system is up (Windows 10), so I'd like to know before I purchase the board.</p>

<p>Thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>USB 3.0 OTG Port on UP Squared not working - functionality?</title>
        <link>https://forum.up-community.org/discussion/4051/usb-3-0-otg-port-on-up-squared-not-working-functionality</link>
        <pubDate>Thu, 21 Nov 2019 00:55:19 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Chris0815</dc:creator>
        <guid isPermaLink="false">4051@/discussions</guid>
        <description><![CDATA[<p>Hi All,</p>

<p>yesterday I did a first test of the UP Squared and a fresh Windows 10 Pro installation.<br />
Now I have a question. How is the functionality of the USB OTG Port?<br />
All ports working fine, except the OTG port, perhaps I don't understand the functionality.<br />
I connected the USB3.0 OTG cable from the Up Shop to the Micro-B Port on the Mainboard.<br />
Should the USB3.0 Port from the cable now work in host mode so I can plug in<br />
any USB device (USB-Stick, peripherals)?<br />
Actually if I connect a device (USB Stick) it isn't recognized and nothing happens.<br />
What should I do with the USB A plug at the cable, do I have to plug it into a USB port <br />
for additional power supply?</p>

<p>Or do I have to make BIOS changes/update or install additional drivers to get it work?<br />
Because I still have one problem, in the device manager in windows one device has<br />
missing drivers, it's a not further described <strong>USB Controller</strong>.</p>

<p>BIOS Situation:<br />
BIOS Version -&gt; R2.1  -&gt; Is it necessary to upgrade to V4.0 and afterwards V4.6?<br />
Are there big improvements or otherwise known problems with this new bios versions?</p>

<p>Software Situation:<br />
Fresh Windows 10 Pro installation.<br />
After that i had 4 missing drivers for devices in Win 10 device manager:<br />
1. Sound-Device -&gt; BIOS settings changed -&gt; fixed<br />
2. Unknown Device -&gt; manual UART driver installation from UP Win 10 Drivers Pack -&gt; fixed<br />
3. Unknown Device -&gt; manual UART driver installation from UP Win 10 Drivers Pack -&gt; fixed</p>

<ol start="4"><li>USB Controller -&gt; no drivers found in UP Win 10 Driver Pack using manual driver selection in Win10 device manager  -&gt; <strong>not fixed</strong></li>
</ol><p>Are there drivers for the USB Controller somewhere?<br />
Should I additionally install the whole UP Win 10 Driver Pack?<br />
The installed drivers are way more actual as the drivers from the Up Driver Pack,<br />
so I think it's not necessary to install them.</p>

<p>Thank you.</p>
]]>
        </description>
    </item>
    <item>
        <title>How to configure which apps use which network port?</title>
        <link>https://forum.up-community.org/discussion/4111/how-to-configure-which-apps-use-which-network-port</link>
        <pubDate>Thu, 09 Jan 2020 02:30:23 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>roujesky</dc:creator>
        <guid isPermaLink="false">4111@/discussions</guid>
        <description><![CDATA[<p>The up squared has 2 ethernet ports.  How can I configure certain apps to use one port and others to use the other port?<br />
thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>[Solved] Windows IOT Prolific usb to serial drivers</title>
        <link>https://forum.up-community.org/discussion/4092/solved-windows-iot-prolific-usb-to-serial-drivers</link>
        <pubDate>Tue, 17 Dec 2019 20:20:12 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>problim</dc:creator>
        <guid isPermaLink="false">4092@/discussions</guid>
        <description><![CDATA[<p>What is the best approach on installing these drivers on the Up Squared with Windows IoT?</p>
]]>
        </description>
    </item>
    <item>
        <title>M.2 WiFi card disapearing??</title>
        <link>https://forum.up-community.org/discussion/3958/m-2-wifi-card-disapearing</link>
        <pubDate>Mon, 14 Oct 2019 14:35:24 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>name</dc:creator>
        <guid isPermaLink="false">3958@/discussions</guid>
        <description><![CDATA[<p>I added an Intel AX200 wifi card to the Up2 and it will work for 1-3 days, but then out of nowhere it just disappears from Device manager, weird part that the Bluetooth part of the M.2 card remains active.</p>

<p>Reboots don't help, they only way to get the card back, is to turn off the device, boot it, turn it off, and put the card back, it will work for few days again and then disappear.</p>

<p>I'm on the latest 4.6 bios, this device seems extremely buggy.</p>

<p>Anyone have any idea how to prevent the device from disappearing?</p>
]]>
        </description>
    </item>
    <item>
        <title>UP SDK for Windows 10 and Windows IoT</title>
        <link>https://forum.up-community.org/discussion/4084/up-sdk-for-windows-10-and-windows-iot</link>
        <pubDate>Wed, 11 Dec 2019 16:32:13 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>whitecider</dc:creator>
        <guid isPermaLink="false">4084@/discussions</guid>
        <description><![CDATA[<p>I can only get GPIO 11 working none of the others seem to function. Is there any way to get them all to work? <br />
I have Windows 10 LTSC installed BIOS 4.7 and UP framework installed.</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 IOT C# access to GPIO</title>
        <link>https://forum.up-community.org/discussion/4054/windows-10-iot-c-access-to-gpio</link>
        <pubDate>Fri, 22 Nov 2019 16:09:00 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>roujesky</dc:creator>
        <guid isPermaLink="false">4054@/discussions</guid>
        <description><![CDATA[<p>Has anyone done any development in C# accessing GPIO's?   I am struggling finding an example piece of code.   Kinda new, so it is probably me not knowing the right search words.</p>

<p>thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>trying to install Linux Mint beside W10 Pro</title>
        <link>https://forum.up-community.org/discussion/3777/trying-to-install-linux-mint-beside-w10-pro</link>
        <pubDate>Wed, 26 Jun 2019 19:28:08 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>marc</dc:creator>
        <guid isPermaLink="false">3777@/discussions</guid>
        <description><![CDATA[<p>my board is a UP^2 w 8 GB of ram, 64 GB of drive, pentium quad core, secondary 500 GB ssd external drive via usb. W10 Pro is running on this machine without a glitch for more than 6 months.</p>

<p>After a certain numbrer of tries, I succeed at last to install a Linux flavor (mint, 19.1 "Tessa" 64 bits) on an external SSD (via USB3 link). <br />
/ and home are created, files are copied, Grub2 has even been able to find a place on the local UP board ssd drive (but not on the  external one). <br />
The UEFI boot selector see a Windows drive and a  Linux drive, and I can switch from windows to Linux... so far, so good<br />
but I have kernel panic as soon as grub has been launched</p>

<p>did someone succeed with such an OS config ? and if yes, what sort of trick should I use ? or is this kind of configuration definitely need an Msata drive ?</p>

<p>cheers<br />
Marc</p>
]]>
        </description>
    </item>
    <item>
        <title>How to access I2c and GPIO on Windows IoT</title>
        <link>https://forum.up-community.org/discussion/3599/how-to-access-i2c-and-gpio-on-windows-iot</link>
        <pubDate>Thu, 21 Mar 2019 09:47:28 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Bjalv</dc:creator>
        <guid isPermaLink="false">3599@/discussions</guid>
        <description><![CDATA[<p>The following code will open up the I2c without issue on the Raspberry Pi, but on Up Squared it results in an exception.</p>

<pre spellcheck="false" tabindex="0">string advancedQuerySyntaxString = I2cDevice.GetDeviceSelector("I2C1"); 
var deviceInformationCollection = await DeviceInformation.FindAllAsync(advancedQuerySyntaxString);
_device = await I2cDevice.FromIdAsync(deviceInformationCollection[0].Id, settings);
</pre>

<p>It seems to not find any I2c, and thus "deviceInformationCollection" is empty. <br />
It throws the following exception:</p>

<blockquote><div>
  <p>System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values.<br />
  Parameter name: index<br />
     at System.Runtime.InteropServices.WindowsRuntime.IVectorViewToIReadOnlyListAdapter.Indexer_Get[T](Int32 index)<br />
     at Communication.Vehicle.VehicleCommunication.d__5.MoveNext()</p>
</div></blockquote>

<p><strong>How should the BIOS be configured to get I2c and GPIO working in Windows IoT?</strong><br />
Are there any additional changes that must be done elsewhere?</p>
]]>
        </description>
    </item>
    <item>
        <title>Help to get &quot;mPCIe LTE module kit&quot; working</title>
        <link>https://forum.up-community.org/discussion/3734/help-to-get-mpcie-lte-module-kit-working</link>
        <pubDate>Wed, 05 Jun 2019 16:56:20 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Toine</dc:creator>
        <guid isPermaLink="false">3734@/discussions</guid>
        <description><![CDATA[<p>Hi,<br />
I do not manage to get network access with the <strong><em>mPCIe LTE module kit</em></strong></p>

<p>I have an Up Squared board, running Windows Iot Core (version 10.0.17763.33).<br />
I plugged the mPCIe LTE and it's antenna after inserting a SIM card that works fine elsewhere.</p>

<p>Then Windows Iot Core boots correctly, but I cannot see any change in network adapters / devices...</p>

<p>I tried to search for any missing drivers, but I couldn't find anything relevant.</p>

<p>Anyone can help ?</p>

<p>Note: I'm facing the same problem with the M.2 2230 WiFi kit</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 shows &quot;Could not recognize device &quot; when plugged in upsquared through OTG</title>
        <link>https://forum.up-community.org/discussion/3651/windows-10-shows-could-not-recognize-device-when-plugged-in-upsquared-through-otg</link>
        <pubDate>Mon, 15 Apr 2019 03:00:32 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>vini_gajjar</dc:creator>
        <guid isPermaLink="false">3651@/discussions</guid>
        <description><![CDATA[<p>Hello , <br />
I have the Up squared 8GB memory / 64 GB storage version.</p>

<p>Problem: Windows 10 shows "Device malfunction, Could not recognize" when plugged in the Up squared board through otg.</p>

<p>Steps: Following steps are performed to use up-squared as gadget mass storage device and to access it from windows 10</p>

<p>1 In bios the OTG device mode is already enabled.</p>

<p>2 In terminal , I ran following commands,<br />
dd bs=1M count=4 if=/dev/zero of=gadget_storage<br />
fdisk -u gadget_storage</p>

<ul><li>pressed "x" for expert mode</li>
<li>pressed "s" and entered 8 for 8 sectors</li>
<li>pressed "h" and entered 1 for 1 head</li>
<li>pressed "c" and entered 1024 for 1024 cylinders</li>
<li>pressed "r" to get out of xpert mode</li>
<li>pressed "n" and then "p" for primary</li>
<li>Entered the default value to select the partitions and then First sector and Last sectors</li>
<li>pressed "t" and and pressed "7" to select file system as NTFS</li>
<li>pressed "w" to save the partition table.<br />
losetup -o512 /dev/loop0 gadget_storage<br />
*// -o 512 setting the byte offset (First sector number[1 in my case] * 512 = 512)<br />
mkfs.ntfs -p 1 -S 8 -H 1 /dev/loop0 8191<br />
*// p sets starting sector number which is 1 , S represent sectors per track which i selected as 8 , H as heads and 8191 <br />
*// reperesent total sectors .<br />
losetup -d /dev/loop0<br />
*// detaching the backing store file from loop device<br />
modprobe g_mass_storage stall=0 file=gadget_storage</li>
</ul><p>Connected the upsquared to windows 10 host machine while OTG cable<br />
Problem : windows 10 shows , Device malfunctioned , could not recognize the usb device.</p>

<p>However , I could successfully detect the mass storage in windows 7 and linux ubuntu host systems ,</p>

<p>Could somebody please help me understand what could go wrong with windows 10.</p>

<p>Thank you</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 install problem</title>
        <link>https://forum.up-community.org/discussion/3636/windows-10-install-problem</link>
        <pubDate>Sun, 07 Apr 2019 16:52:16 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>DelJones</dc:creator>
        <guid isPermaLink="false">3636@/discussions</guid>
        <description><![CDATA[<p>Hi All,</p>

<p>I have bought four up squared boards to run windows 10 Pro on some equipment I am building.  They are the quad core, 4Gb ram, 32Gb eMMC</p>

<p>Two boards installed OK but two boards keep restarting them selves whilst the spinning dots are showing.  I've updated the bios but this hasn't fixed it.</p>

<p>Has anyone had this before?</p>

<p>Strange that two were OK and two are not???</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows IOT on screen keyboard</title>
        <link>https://forum.up-community.org/discussion/3638/windows-iot-on-screen-keyboard</link>
        <pubDate>Mon, 08 Apr 2019 16:53:36 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jmadeley</dc:creator>
        <guid isPermaLink="false">3638@/discussions</guid>
        <description><![CDATA[<p>I am using the UP squared board for a front panel touch screen controller running Windows 10 IOT.  I have installed Windows IOT from the Up squared download page and having it successfully running, The option for the on-screen keyboard does not appear in IOT dashboard. <br />
Does anyone have a windows 10 iot image for the up squared which supports the on screen keyboard?  Another option would be clear instructions on how to build an IOT image.  I have been unable in following Microsoft's instructions without error.</p>
]]>
        </description>
    </item>
    <item>
        <title>GPIO disable when power of the computer</title>
        <link>https://forum.up-community.org/discussion/3598/gpio-disable-when-power-of-the-computer</link>
        <pubDate>Wed, 20 Mar 2019 11:58:46 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>HCtrl</dc:creator>
        <guid isPermaLink="false">3598@/discussions</guid>
        <description><![CDATA[<p>Hello,</p>

<p>I notice when I power off the computer, it remains with the 5V on the GPIO, it's not possible to disable the GPIO after powering off the computer? I was using to signalizing that the computer was turned off, connected to a led, because it is inside of a box.</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>The Device Manager of my Windows10 PC cannot show USB COM port of UP Square</title>
        <link>https://forum.up-community.org/discussion/3543/the-device-manager-of-my-windows10-pc-cannot-show-usb-com-port-of-up-square</link>
        <pubDate>Sat, 16 Feb 2019 12:18:47 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>TatsujiShimokawabe</dc:creator>
        <guid isPermaLink="false">3543@/discussions</guid>
        <description><![CDATA[<p>I have bought UP Square board from AAEON. But I cannot start Arduino Creative. Because the Device Manager of my Windows10 PC cannot show USB COM port of UP Suquare.<br />
Can you tell me how to install UP Suquare USB driver ?</p>

<p>Inte Edison shows answer accoding to <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fsoftware.intel.com%2Fen-us%2Fget-started-edison-windows-32-step2">https://software.intel.com/en-us/get-started-edison-windows-32-step2</a></p>

<p>Step 2: Install USB Drivers</p>

<p>In this step, you will run two installers to enable USB features between your Intel Edison board and your Windows* computer.</p>

<p>1.Install the Intel Edison Board USB Drivers<br />
 Run the standalone driver installer for Windows* to install several USB drivers such as:<br />
•Composite Device Class (CDC) for programming the board via the Arduino* IDE<br />
•Remote Network Driver Interface Spec (RNDIS) for Ethernet over USB<br />
•Device Firmware Upgrade (DFU) for updating firmware on devices</p>

<p>2.Install FTDI* CDM drivers<br />
 Install serial drivers, available from FTDI Chip*, to allow your computer to communicate with USB serial devices, including the Intel Edison board.</p>

<p>Are you running Windows* 64-bit?<br />
 You will find it more convenient to use the setup tool to install all USB drivers (plus flash firmware) within a single installation wizard. Go to the Windows* 64-bit Getting Started Guide.</p>

<p>Install the Intel Edison Board USB Drivers</p>

<p>Animated gif: Running the Intel® Edison Board USB Drivers</p>

<p>1.Get the latest Windows* Standalone Driver from software.intel.com/iot/hardware/edison/downloads listed under the driver software heading.</p>

<p>Direct file link:<br />
 At the time of writing, the latest Windows* Standalone Driver was 1.2.1.</p>

<p>2.Double-click the downloaded EXE file to launch the installation wizard.</p>

<p>But UP square doesn't show answer accoding to <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fsoftware.intel.com%2Fen-us%2Fupsquared-grove-getting-started-guide-create-account">https://software.intel.com/en-us/upsquared-grove-getting-started-guide-create-account</a></p>

<p>Step 2: Connect to Arduino Create*</p>

<p>In this step, you will:<br />
•Sign up for Arduino Create*<br />
•Install the Arduino plugin on your host computer<br />
•Verify your board's connections<br />
•Upload the Arduino connector to your board<br />
•Name your board</p>

<p>Configure the UP2* Board<br />
 1.On your host computer, go to <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fcreate.arduino.cc%2Fgetting-started%2Fup2">https://create.arduino.cc/getting-started/up2</a>. Then click Login.</p>

<p>Note: If you don’t already have an Arduino Create account, follow the onscreen instructions to sign up. You'll need to activate your account and log into the site using your new account.</p>

<p>2.If this is your first time using Arduino Create, you’ll be asked to install the Arduino plugin. Follow the onscreen instructions to install the Arduino plugin.</p>

<p>Note: If you get an error message saying We are not able to detect the installed plugin, try locating the Arduino Plugin icon in your system tray, right-click, then select Open plugin.</p>

<p>Verify your board's connection<br />
 1.After installing the plugin, you’ll see a page asking you to double-check that your board is properly connected so the connector can be installed. Verify that it is still powered on and click Next. <br />
 Note: If you've completed Step 1 in this guide, your board is already set.</p>

<p>Upload the Arduino* connector to your board<br />
 1.You’ll be asked to upload the Arduino Connector to your UP² board. Click Upload.</p>

<p>2.Wait about 3 minutes for your board to connect to Arduino Create.</p>

<p>If you find yourself on this "Connecting your board to Arduino Create" screen for than 3 minutes, check your connections (Ethernet, micro USB, power) and try again. If that doesn’t work, try these troubleshooting tips:<br />
◦Completely restart your UP² board by removing the power supply and the micro USB cable. Then power it back on. Wait a couple of minutes for it to boot, then try to connect to Arduino Create again.<br />
◦If your host computer has Windows*, minimize all windows to make sure you haven’t missed a pop-up message asking you to install a driver.<br />
◦Force a "hard refresh" on the Arduino web page. For example, if you’re on Chrome*:<br />
◦For Windows, press Ctrl+Shift+R.<br />
◦For macOS*, hold Shift and click the Reload button.</p>
]]>
        </description>
    </item>
    <item>
        <title>Graphics not installing</title>
        <link>https://forum.up-community.org/discussion/3535/graphics-not-installing</link>
        <pubDate>Wed, 13 Feb 2019 08:58:35 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>whitecider</dc:creator>
        <guid isPermaLink="false">3535@/discussions</guid>
        <description><![CDATA[<p>I have a clean windows and Bios 4.0 install. Trying to run the windows drivers from here "UP-Squared-Windows-10-64-bit-drivers" "Step 2 - Graphic" and every time I run the installer it crashes the system.</p>

<p>I went to device manager and tried to update the driver from there it did the same thing.</p>
]]>
        </description>
    </item>
    <item>
        <title>After installing Intel Graphics windows starts to reboot</title>
        <link>https://forum.up-community.org/discussion/3567/after-installing-intel-graphics-windows-starts-to-reboot</link>
        <pubDate>Tue, 05 Mar 2019 10:49:04 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>AleksandarH</dc:creator>
        <guid isPermaLink="false">3567@/discussions</guid>
        <description><![CDATA[<p>I have installed windows 10 pro on my UP Squared. Then i have proceeded with installing the drivers from <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fup2-windows-10-drivers%2F">this link</a>.  When i've arrived at step 2 - installing the Intel Graphics driver - the UP Squared restarted after the installation was completed and continued to restart until i've booted into Safe mode and removed the Intel Graphics driver. I have tried every driver from the Intel web page (the ones that are specific with the processor) and numerous different windows 10 pro images and the problem always starts when i install the Intel Graphics driver.<br />
I've hooked up my device with a Voltage and amps meter, and the device is working at 5V and drawing a maximum of 2.5A (In the specifications it says 4-6A@5V), so i think that power shortage isn't the problem for rebooting. I even updated the BIOS to 4.0. Does anyone know why or how can i fix it?</p>

<p>Thank you.</p>

<p>PS: My UP^2 model: <br />
        -Intel Pentium N4200 - 8GB DDR4 - 64GB eMMC</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 32bit</title>
        <link>https://forum.up-community.org/discussion/3211/windows-10-32bit</link>
        <pubDate>Fri, 24 Aug 2018 11:36:12 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mhgdvx</dc:creator>
        <guid isPermaLink="false">3211@/discussions</guid>
        <description><![CDATA[<p>Is it possible to install 32bit Windows 10 on UP2 or UP ?</p>

<p>Some prior discussions  seem to indicate 32bit windows will run, and I see there is a 32bit windows 10 driver download for UP.</p>

<p>I have been unable to get 32bit windows installers (USB stick or DVD)  to boot on either UP or UP2, so was wondering if the current BIOS is only 64bit compatible?  Is there an "older" 32bit compatible BIOS?</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>UP2 Win10 - Audio not working</title>
        <link>https://forum.up-community.org/discussion/2094/up2-win10-audio-not-working</link>
        <pubDate>Wed, 26 Jul 2017 08:53:01 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Tobi</dc:creator>
        <guid isPermaLink="false">2094@/discussions</guid>
        <description><![CDATA[Hey all,<br /><br />
3 weeks after I got the new UP squared, I started today putting an OS on it. I have choosen Win10 Pro and installed it on the UP2 internal memory.<br /><br />
Afterwards, I downloaded and installed all Drivers, provided in the download area. But after installation, some devices are still not recognized in the device Manager (see attached Image).<br /><br />
Does anyone has an idea what devices this are?<br /><br />
Most strange is, that the Audio Controller is not installed. I thought, it was provided together with the Display Drivers (I am using HDMI). In the Display Driver Folder, there is a "DisplayAudio" Folder included but this Driver can not be used for the uninstalled Audio controller. Also during the Display Driver Installation via Setup, it tells me that just the graphic Driver will be installed. Nothing written about the Audio Driver.<br /><br />
Finally, I connected the UP2  to a Screen with Speakers but I dont have any Sound. In the Task bar, Audio Symbol is red crossed.<br /><br />
Does anyone have already experiences running Win10 on the UP2 and can help me here?]]>
        </description>
    </item>
    <item>
        <title>BIOS Does not have &quot;Windows 10 IOT Core&quot; option</title>
        <link>https://forum.up-community.org/discussion/3384/bios-does-not-have-windows-10-iot-core-option</link>
        <pubDate>Fri, 16 Nov 2018 19:14:59 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Sunken</dc:creator>
        <guid isPermaLink="false">3384@/discussions</guid>
        <description><![CDATA[<p>Hello-<br />
Trying to get my first UP Squared board on line and working.  I downloaded the image and am following the directions in the PDF.   On page 6, there is an OS selection section that shows Windows, Android, Win7, Intel Linux and Windows 10 IOT Core.   I'm missing the Windows IOT Core Option?!?</p>

<p>Thoughts / suggestions?</p>

<p>Thanks  <img src="https://forum.up-community.org/resources/emoji/smile.png" title=":)" alt=":)" height="20" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Deploying Visual Studio projects on UP Squared</title>
        <link>https://forum.up-community.org/discussion/2795/deploying-visual-studio-projects-on-up-squared</link>
        <pubDate>Tue, 13 Feb 2018 12:00:21 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>vishwanathkr</dc:creator>
        <guid isPermaLink="false">2795@/discussions</guid>
        <description><![CDATA[<p>I am still trying to setup my dev env on my Up Squared board running WinIOTCore. I am not able to get the remote debugger process to start on the device. It would be great if somebody could point me to any resources for running visual studio projects specifically on UP squared.</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 7 on Up Squared</title>
        <link>https://forum.up-community.org/discussion/3411/windows-7-on-up-squared</link>
        <pubDate>Fri, 30 Nov 2018 06:14:50 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mickey</dc:creator>
        <guid isPermaLink="false">3411@/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p>Is it still possible to install Windows 7 on up2 ?</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 - USB External Hard Disk problems</title>
        <link>https://forum.up-community.org/discussion/2413/windows-10-usb-external-hard-disk-problems</link>
        <pubDate>Sun, 29 Oct 2017 14:28:39 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>deesko</dc:creator>
        <guid isPermaLink="false">2413@/discussions</guid>
        <description><![CDATA[Hello.<br /><br />
I'm having problems using any usb external hard disk connected to the board, both externally powered or not, and what happens is that upon usage of the drive (I mean, not only standing there idle), it randomly reboots the machine without even a warning. It just reboots displaying no error message or whatnot.<br /><br />
I've seen this happening with different drives that work fine in other machines, so I'm certain it isn't related to the drives themselves.<br /><br />
I've installed all the windows drivers provided, but there's always device manager complaining about 3 unknown devices:<br /><br />
PCI\VEN_8086&amp;DEV_5AAA&amp;SUBSYS_72708086&amp;REV_0B\3&amp;11583659&amp;0&amp;A9<br /><br />
ACPI\INT3512\4&amp;28CFC893&amp;0<br /><br />
ACPI\INT3511\4&amp;14C878F8&amp;0<br /><br />
Since 8086 is Intel vendor, I've installed Intel's tools to diagnose the missing driver(s), but it finds nothing...<br /><br />
Does anyone have the same problems as I have, and has any of you a solution for this?<br /><br />
Many thanks]]>
        </description>
    </item>
    <item>
        <title>UP Squared and Arduino</title>
        <link>https://forum.up-community.org/discussion/3361/up-squared-and-arduino</link>
        <pubDate>Thu, 08 Nov 2018 11:54:21 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Honeybed</dc:creator>
        <guid isPermaLink="false">3361@/discussions</guid>
        <description><![CDATA[<p>I have an issue with my Up2 development kit, i hope you can provide help.</p>

<p>Before now, i have tried to connect an LED and it works pretty well.<br />
But recently, anytime i tried to send a command i always get an error message.<br />
"Object Object".</p>

<p>Kindly find the attached Picture</p>

<p><img src="https://us.v-cdn.net/6030431/uploads/editor/cy/s1v5e0042kcb.png" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/cy/s1v5e0042kcb.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/cy/s1v5e0042kcb.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/cy/s1v5e0042kcb.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/cy/s1v5e0042kcb.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/cy/s1v5e0042kcb.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/cy/s1v5e0042kcb.png 2000w, https://us.v-cdn.net/6030431/uploads/editor/cy/s1v5e0042kcb.png" sizes="100vw" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Ethernet port teaming/link aggregation/bonding?</title>
        <link>https://forum.up-community.org/discussion/3352/ethernet-port-teaming-link-aggregation-bonding</link>
        <pubDate>Sat, 03 Nov 2018 19:25:40 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Christos Oscar Kambiselis</dc:creator>
        <guid isPermaLink="false">3352@/discussions</guid>
        <description><![CDATA[<p>Has anyone tried "teaming" the ethernet ports to get a 2Gb link? I have found general instruction for another Realtek NIC but couldn't find anything for the UP2.</p>
]]>
        </description>
    </item>
    <item>
        <title>windows 10 iot core install boot loop</title>
        <link>https://forum.up-community.org/discussion/3295/windows-10-iot-core-install-boot-loop</link>
        <pubDate>Tue, 09 Oct 2018 09:55:41 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>denistu</dc:creator>
        <guid isPermaLink="false">3295@/discussions</guid>
        <description><![CDATA[<p>i've downloaded <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fup-squared-windows-iot-core-image-beta%2F">https://downloads.up-community.org/download/up-squared-windows-iot-core-image-beta/</a><br />
and followed instructions from pdf inside archive:<br />
1) upgraded uefi from v2.1 to v3.3, successfully<br />
2) prepared usb flash with windows iot core using dism, successfully<br />
but when i insert usb flash and turn power on, up2 starts loading installer and the reboot<br />
and so on in a loop<br />
what i'm missing?</p>
]]>
        </description>
    </item>
    <item>
        <title>MATLAB SIMULINK COMPATIBILITY</title>
        <link>https://forum.up-community.org/discussion/3282/matlab-simulink-compatibility</link>
        <pubDate>Thu, 04 Oct 2018 17:56:32 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>enddot12</dc:creator>
        <guid isPermaLink="false">3282@/discussions</guid>
        <description><![CDATA[<p>Hi, I would like to know if this up squared board is compatible with matlab simulink</p>
]]>
        </description>
    </item>
    <item>
        <title>DisplayPort not working with Win10</title>
        <link>https://forum.up-community.org/discussion/2053/displayport-not-working-with-win10</link>
        <pubDate>Wed, 12 Jul 2017 21:20:21 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Robert Shelton</dc:creator>
        <guid isPermaLink="false">2053@/discussions</guid>
        <description><![CDATA[HDMI works, but the DP port does not. After testing with multiple displays and cables, no display sees a signal from my Up2 via the DP. I can swap the DP for an HDMI cable, and the desktop is there. I looked in UEFI but saw nothing that I could do to enable or switch between HDMI/DP. I am assuming this is a driver issue. Does anyone have Win10 working via DP? Were any configuration or driver changes needed to enable DP?]]>
        </description>
    </item>
    <item>
        <title>BIOS settings for Futurelabs 7&quot;W eDP screen</title>
        <link>https://forum.up-community.org/discussion/2759/bios-settings-for-futurelabs-7-w-edp-screen</link>
        <pubDate>Mon, 29 Jan 2018 15:17:19 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Gordon Paterson</dc:creator>
        <guid isPermaLink="false">2759@/discussions</guid>
        <description><![CDATA[<p>Hi,<br />
I'm having an issue getting the up2 to display it's output on the screen. I have followed the instructions for the DIP switch on the interface board, 1 &amp; 8 set to off 2 -7 set to on position.<br />
In the BIOS (V2.1) I have changed the North bridge IGD Boot Type to eDP.<br />
What am I missing?</p>

<p>Thanks.</p>
]]>
        </description>
    </item>
    <item>
        <title>Touch panel display not working</title>
        <link>https://forum.up-community.org/discussion/3070/touch-panel-display-not-working</link>
        <pubDate>Fri, 25 May 2018 09:15:10 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>cristian_1</dc:creator>
        <guid isPermaLink="false">3070@/discussions</guid>
        <description><![CDATA[<p>Hello</p>

<p>We bought for testing two up square boards (one Celeron N3350 and one Pentium N4200) and a 10.1 touch panel display. The touch panel display works perfectly with the N4200 board, but displays nothing with the Celeron board, only the backlight starts.</p>

<p>Both boards were updated to BIOS 3.3.  I've tried a bunch of combination of BIOS settings concerning the panel resolution, but nothing works.</p>

<p>Thanks a lot<br />
Cristian</p>
]]>
        </description>
    </item>
    <item>
        <title>UP Squared with RockTouch 10.1&quot; LCD</title>
        <link>https://forum.up-community.org/discussion/3228/up-squared-with-rocktouch-10-1-lcd</link>
        <pubDate>Fri, 31 Aug 2018 13:40:31 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>ct_ipc</dc:creator>
        <guid isPermaLink="false">3228@/discussions</guid>
        <description><![CDATA[<p>Hi,<br />
I have an issue that I cannot deal by myself.</p>

<p>I tried to connect RockTouch 10" lcd (KIT-101JDHX30BP1U1) to UP Squared. In my lcd kit I have controller board marked as TFC_UP2DSI.<br />
Only backlight of lcd is turning on and screen is blank.<br />
Next, I followed tutorial for UP board, how to connect and configure it, but UP board has other options to set in bios. So I tried everyone (auto, DSI, eDP, ...), with every resolution and other settings. It was tried with hdmi connected  and disconnected, in bios and in windows10. Always blank screen.<br />
The latest bios update also didn't fix it.</p>

<p>I have no idea what I can check else.</p>
]]>
        </description>
    </item>
    <item>
        <title>Read CPU Temperature</title>
        <link>https://forum.up-community.org/discussion/3220/read-cpu-temperature</link>
        <pubDate>Tue, 28 Aug 2018 08:01:45 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>ugrgnc</dc:creator>
        <guid isPermaLink="false">3220@/discussions</guid>
        <description><![CDATA[<p>Hi, <br />
I want to read the CPU temperature with WMI. but I get a NotSupportedException. I think that the up-board don't support WMI. I did try to read directly but I need a specific driver for it.<br />
How can I read CPU temperature ? is there any driver for it?</p>

<p>Hardware =&gt; Up Squared Intel Pentium N4200 Apollo Lake CPU<br />
OS =&gt; Windows 10 LTSB1607</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows IOT Core OS Upgrade</title>
        <link>https://forum.up-community.org/discussion/3202/windows-iot-core-os-upgrade</link>
        <pubDate>Thu, 16 Aug 2018 16:32:08 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>ryannebel</dc:creator>
        <guid isPermaLink="false">3202@/discussions</guid>
        <description><![CDATA[<p>I am currently running Windows IOT Corer on my up squared the OS version is 10.0.15063.0<br />
I would like to upgrade it to at a minimum to the fall creators edition.<br />
How would I go about doing this, automatic updates doesn't seem to work?</p>
]]>
        </description>
    </item>
    <item>
        <title>PWM example from AAeon SDK fails to set PWM</title>
        <link>https://forum.up-community.org/discussion/2743/pwm-example-from-aaeon-sdk-fails-to-set-pwm</link>
        <pubDate>Mon, 22 Jan 2018 14:04:11 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Martin Mayr</dc:creator>
        <guid isPermaLink="false">2743@/discussions</guid>
        <description><![CDATA[<p>Hello <br />
When using the SDK from AAEON and trying the PWM.exe from the release directory I allways get Failed to set PWM message whatever PWM I use and whatever PWM values I want to set ...<br />
In my BIOS the HAT Configuration is as follows:<br />
LPSS HSUART #2 Support Disabled<br />
SPI#1 Disabled<br />
SPI#3 Disabled<br />
I2C #1,2,6,7 all disabled<br />
GPIO / PWM0 Selcetion [PWM0]<br />
GPIO /PWM1 Selcetion [PWM1]<br />
GPIO /PWM3 Selcetion [PWM3]<br />
GPIO /I2S5 Selection [GPIO]<br />
HD-Audio [Disabled]<br />
GPIO / I2S2 Selection [GPIO]<br />
GPIO / Speaker [GPIO]</p>

<p>all GPIO s are defined as Output and all with Low in the BIOS</p>

<p>except :</p>

<p>GPIO 19 (Pin16) PWM3</p>

<p>GPIO25 (Pin32) PWM0<br />
GPIO13 (Pin33) PWM1</p>

<p>....ExHAT Pins all to Input defined ...</p>

<p>So I expected with this configuration to be able to set a frequency to the PWM port ... but the PWM.exe allways says :</p>

<p>Set PWM Failed</p>

<p>Unfortunately sometimes the whole UP2 freezes with this message ... Only way to liberate it is by power off / power on ... !?</p>

<p><img src="https://us.v-cdn.net/6030431/uploads/editor/2w/cze479e0fw6f.png" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/2w/cze479e0fw6f.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/2w/cze479e0fw6f.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/2w/cze479e0fw6f.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/2w/cze479e0fw6f.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/2w/cze479e0fw6f.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/2w/cze479e0fw6f.png 2000w, https://us.v-cdn.net/6030431/uploads/editor/2w/cze479e0fw6f.png" sizes="100vw" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 Unable to boot - UPSQUARED</title>
        <link>https://forum.up-community.org/discussion/3187/windows-10-unable-to-boot-upsquared</link>
        <pubDate>Mon, 06 Aug 2018 12:29:41 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mickey</dc:creator>
        <guid isPermaLink="false">3187@/discussions</guid>
        <description><![CDATA[<p>Hi ppl,</p>

<p>While first powering on the device, I have installed Ubuntu on my local storage MMC. Last two days I am trying to work out, how to boot Windows 10 bootable USB stick.  Reason writing this is due to series of unsuccessful attempts consists of mending BIOS config, arranging booting order, changing partition table, file system in RUFUS etc. <br />
Still after every reboot, regardless of settings and devices attached into it, boots Ubuntu from eMMC .<br />
Can you please help me, as I am getting desperate at this stage.<br />
Thanks in advance <br />
Mickey</p>
]]>
        </description>
    </item>
    <item>
        <title>Windows 10 PRO x64 freezes around 2min on EVERY startup</title>
        <link>https://forum.up-community.org/discussion/3032/windows-10-pro-x64-freezes-around-2min-on-every-startup</link>
        <pubDate>Sat, 05 May 2018 23:44:28 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Clanger</dc:creator>
        <guid isPermaLink="false">3032@/discussions</guid>
        <description><![CDATA[<p>My board is an Up2 squared N4200 with 8gb of ram and 64gb of eMMC.</p>

<p>After this freeze appears this error in Explorer.exe: "The remote procedure call failed and did not execute."</p>

<p><img src="https://us.v-cdn.net/6030431/uploads/editor/bi/mtinqaaucmwq.jpg" alt="" title="" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6030431/uploads/editor/bi/mtinqaaucmwq.jpg 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6030431/uploads/editor/bi/mtinqaaucmwq.jpg 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6030431/uploads/editor/bi/mtinqaaucmwq.jpg 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6030431/uploads/editor/bi/mtinqaaucmwq.jpg 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6030431/uploads/editor/bi/mtinqaaucmwq.jpg 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6030431/uploads/editor/bi/mtinqaaucmwq.jpg 2000w, https://us.v-cdn.net/6030431/uploads/editor/bi/mtinqaaucmwq.jpg" sizes="100vw" /></p>

<p>This occurs ever. After install Windows without internet or installing drivers, when you make a reboot error appears. On every Windows startup.</p>

<p>In addition, after run manually Explorer.exe, my Intel 8265 M.2 wifi dissapears from device manager (at the first boot of installed Windows, it detects the card).</p>

<p>sfc /scannow, chkdsk, or dism did not work. This is not a corrupt installation of Windows (it occurs too using other Windows 10 iso). It seems to be a bios internal bug. Can anyone help me?<br />
 Many thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>N4200 Pentium Version of the UP-Squared graphics driver problems</title>
        <link>https://forum.up-community.org/discussion/2736/n4200-pentium-version-of-the-up-squared-graphics-driver-problems</link>
        <pubDate>Fri, 19 Jan 2018 16:52:00 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Martin Mayr</dc:creator>
        <guid isPermaLink="false">2736@/discussions</guid>
        <description><![CDATA[<p>Hello,</p>

<p>after having changed the first UP Squared via RMA due to different problems know by Roger and Aling ... I finally got the exchange board and this exchange board could receive the Win10 x64 Enterprise installation - this time without problems during the installation ... good news ...<br />
BUT the graphics driver problem is still existing - with the new board newest BIOS 2.1 and newest Win10 - 1709 release I tried to install the Intel Drivers for Apollo Lake N4200 but the board still stay with its Microsoft Base Driver with 800x600 resolution ...</p>

<p>Help please ! Some other formum messages refer to links (which are since the rework of the forum are no more accessible so I can't get the drivers from there and the Intel drivers seems not to work ....</p>

<p>Help please !</p>

<p>Best regards</p>

<p>Martin</p>
]]>
        </description>
    </item>
    <item>
        <title>Installing Windows® 10 IoT Enterprise 2016 LTSB won&#39;t boot</title>
        <link>https://forum.up-community.org/discussion/3104/installing-windows-10-iot-enterprise-2016-ltsb-wont-boot</link>
        <pubDate>Thu, 14 Jun 2018 22:59:05 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mdoke</dc:creator>
        <guid isPermaLink="false">3104@/discussions</guid>
        <description><![CDATA[<p>Got new UP2 board.  4G/32GB<br />
Updated to  Bios 3.3<br />
Set Boot OS to Windows in Bios<br />
Booted from USB to Windows Setup<br />
Removed partition already created and allowed windows to create partitions.<br />
Installed Windows with out any issues.</p>

<p>Upon rebooting after install, The UP2 will boot, i get a windows logo, spinning dots then it reboots. This repeats over and over.</p>

<p>Any won't have this issue?</p>

<p>Thanks in advance:)</p>
]]>
        </description>
    </item>
    <item>
        <title>GPIO drivers for IoT</title>
        <link>https://forum.up-community.org/discussion/2156/gpio-drivers-for-iot</link>
        <pubDate>Tue, 22 Aug 2017 13:46:10 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>wim</dc:creator>
        <guid isPermaLink="false">2156@/discussions</guid>
        <description><![CDATA[I want to create an UWP app using GPIO in visual studio 2017,to communicate with parallel port (printer port) of our embedded board. As start I use the "helloBlinky" example.  But this app can not find the  GPIO controller. I have the UP Drivers installed. Step 1-3 OK, step 4 was not succesfully. Step 1 seems to contain the GPIO driver because there is a GPIO folder in the driver path. I have installed Win 10 IoT enterprise on my up board. Have anyone experience with this?. Where can I found more info? please help]]>
        </description>
    </item>
    <item>
        <title>Need Help : How to install Windows 10 IOT on eMMC</title>
        <link>https://forum.up-community.org/discussion/3056/need-help-how-to-install-windows-10-iot-on-emmc</link>
        <pubDate>Tue, 22 May 2018 11:24:41 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mohitgahlyan</dc:creator>
        <guid isPermaLink="false">3056@/discussions</guid>
        <description><![CDATA[<p>Hi ,</p>

<p>I want to install windows 10 IOT on eMMC .<br />
I could not find the procedure to do it.<br />
I could install the FFU image on USB but not on eMMC .<br />
Please help me regarding this.</p>

<p>Thanks &amp; Regards,<br />
Mohit Gahlyan</p>
]]>
        </description>
    </item>
    <item>
        <title>Up Squared Download Link</title>
        <link>https://forum.up-community.org/discussion/2899/up-squared-download-link</link>
        <pubDate>Fri, 09 Mar 2018 14:25:15 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>matt3_</dc:creator>
        <guid isPermaLink="false">2899@/discussions</guid>
        <description><![CDATA[<p>Hi All</p>

<p>I'm trying to download from this link<br /><a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fup2-windows-10-drivers%2F">https://downloads.up-community.org/download/up2-windows-10-drivers/</a></p>

<p>I can't download the "package" from the link on the right of the download page<br />
OR<br />
I can't download the "Step 2 - Graphic.zip" file.</p>

<p>They both get partially downloaded so when I try to open the zip file is causes an error.<br />
Is there a problem with the server where these files are hosted?</p>

<p>Where can I download Up2 graphics drivers from for Windows 64?</p>

<p>Thanks<br />
Matt</p>
]]>
        </description>
    </item>
    <item>
        <title>UART on Windows 10 x64</title>
        <link>https://forum.up-community.org/discussion/2988/uart-on-windows-10-x64</link>
        <pubDate>Tue, 17 Apr 2018 13:39:51 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>jadkanounji</dc:creator>
        <guid isPermaLink="false">2988@/discussions</guid>
        <description><![CDATA[<p>Dears,</p>

<p>I am facing an issue with using UART on Windows 10 x64.</p>

<p>I want to use an Adafruit GPS hat , which was working fine under Windows IoT.</p>

<p>After the installation of Windows and then the drivers provided, I am unable to interface with it. <br />
Depending on the host OS in the BIOS, I can see either<br />
2x UartSub Device (COM1, COM2) in case I chose the OS to be Windows.<br />
4x UartSub Device (COM1, COM2, COM7, COM8) in case I chose the OS to be Windows IoT.</p>

<p>After extensive searching, I have seen different posts, some claiming that they were able to make it work, others that couldn't. Many pointed out to Hi Safe (of which I downloaded 3 or 4 versions, none of which worked) or aaeonframework which also didn't help at all, let alone finding any good documentation, or plain simply dead or outdated links that don't work anymore.</p>

<p>I'm at a loss here. All I'm trying to do is try to use the 40pin header with the hat (or even just the UART pins 8 and 10) and coming up with nothing.</p>

<p>Any help would be greatly appreciated.</p>
]]>
        </description>
    </item>
    <item>
        <title>UP2 + Adafruit HAT on Win10</title>
        <link>https://forum.up-community.org/discussion/2973/up2-adafruit-hat-on-win10</link>
        <pubDate>Tue, 10 Apr 2018 11:05:16 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>mhejda</dc:creator>
        <guid isPermaLink="false">2973@/discussions</guid>
        <description><![CDATA[<p>Hello everyone,</p>

<p>first of all, thank you for making the UP2 - in terms of performance, it's a real beast.</p>

<p>I have the <strong>Adafruit Stepper Motor HAT controller</strong>, controlling some motors from Python on a Raspberry Pi. Now, I would like to port the whole functionality to my Upboard2 with Windows 10. I'm fairly new to all this stuff (the RPi controls are made by someone else, I just try to transfer it).</p>

<p>I understand that the GPIO layout is the same as on RPi, which should make things easier. I tried to follow the manual on <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fwiki.up-community.org%2FAdafruit%23Using_Adafruit_DC_.26_Stepper_Motor_HAT_on_UP" title="this page">this page</a>, but the GitHub repo is dead. <br />
I tried to install the RPi.GPIO ported for Upboard from <a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fgithub.com%2Femutex%2FRPi.GPIO" title="this page">this page</a>, but I can't get over the installation, getting issues in the C build process on Win (maybe it's only for Linux)?</p>

<p>I also downloaded the last HiSafe software (which was recommended here few times in the previous posts), but I'm not sure how it should help. The DIO controls throw lots of 'cant read value' errors - maybe it has to be first allowed in BIOS...?</p>

<p>Anyone who got the Adafruit HAT working with Python on Win and can give a helping hand?<br />
Thank you very much in advance!</p>
]]>
        </description>
    </item>
    <item>
        <title>How to make the interrupt function working on Windows 10?</title>
        <link>https://forum.up-community.org/discussion/2942/how-to-make-the-interrupt-function-working-on-windows-10</link>
        <pubDate>Tue, 27 Mar 2018 09:39:18 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>joseph_hsiao</dc:creator>
        <guid isPermaLink="false">2942@/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p>I'm developing Windows 10 device driver on UP2 board. My driver needs the interrupt function to report data to Windows. I set pin16 of HAT40 (GPIO19) as the interrupt pin in BIOS and ASL code:</p>

<pre spellcheck="false" tabindex="0">GpioInt(Level, ActiveLow, Exclusive, PullNone, 0, "\\_SB.GPO0", ) {0x13}
</pre>

<p>But my driver never receives interrupt with this configuration. Besides, I found no GPIO controller is shown in System devices of Device Manager. Could you please advise how to make the interrupt function working on Windows 10?</p>
]]>
        </description>
    </item>
    <item>
        <title>arduino create fails setup, solid green led for ethernet</title>
        <link>https://forum.up-community.org/discussion/2953/arduino-create-fails-setup-solid-green-led-for-ethernet</link>
        <pubDate>Sun, 01 Apr 2018 18:57:22 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>beardogsh</dc:creator>
        <guid isPermaLink="false">2953@/discussions</guid>
        <description><![CDATA[<p>I am going through the connections. I plugged the micro usb then the ethernet then the power source.</p>

<p>When the ethernet LED turns on it is solid green with the secondary led blinking yellow temporarily. Whenever I try to connect arduino create to the board it fails. Please help!</p>
]]>
        </description>
    </item>
    <item>
        <title>IoT Core image (beta)</title>
        <link>https://forum.up-community.org/discussion/2801/iot-core-image-beta</link>
        <pubDate>Fri, 16 Feb 2018 05:24:50 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>matsujirushi</dc:creator>
        <guid isPermaLink="false">2801@/discussions</guid>
        <description><![CDATA[<p>Hi,<br />
I have plan to use Windows 10 IoT Core on UP Squared.<br />
What's mean "(beta)" on UP community downloads page? Is it not official release now?<br /><a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=https%3A%2F%2Fdownloads.up-community.org%2Fdownload%2Fup-squared-windows-iot-core-image-beta%2F">https://downloads.up-community.org/download/up-squared-windows-iot-core-image-beta/</a></p>
]]>
        </description>
    </item>
    <item>
        <title>Win10 drivers for HDMI &amp;amp; Displayport audio (Vendor 8086, Device 5A98)</title>
        <link>https://forum.up-community.org/discussion/2842/win10-drivers-for-hdmi-displayport-audio-vendor-8086-device-5a98</link>
        <pubDate>Sat, 03 Mar 2018 22:50:30 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Clanger</dc:creator>
        <guid isPermaLink="false">2842@/discussions</guid>
        <description><![CDATA[<p>I've collected and uploaded the necessary drivers. They worked for me. Enjoy! <img src="https://forum.up-community.org/resources/emoji/wink.png" title=";)" alt=";)" height="20" /></p>

<p><a rel="nofollow" href="https://forum.up-community.org/home/leaving?allowTrusted=1&amp;target=http%3A%2F%2Fwww.mediafire.com%2Ffile%2Fnqa613seub34qkh%2FUp-Squared%2BIntel%2BSST%2B%2528HDMI-DP%2Baudio%2529.zip">http://www.mediafire.com/file/nqa613seub34qkh/Up-Squared+Intel+SST+(HDMI-DP+audio).zip</a></p>
]]>
        </description>
    </item>
    <item>
        <title>missing drivers</title>
        <link>https://forum.up-community.org/discussion/2834/missing-drivers</link>
        <pubDate>Wed, 28 Feb 2018 16:38:24 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>FRod1981</dc:creator>
        <guid isPermaLink="false">2834@/discussions</guid>
        <description><![CDATA[<p>Went through the process of installing windows.. then downloading the up-squared driver package.. still have 4 drivers uninstalled and my m-Sata card isn't recognized.   What is the problem with basic functionality?<br />
Multimedia Audio Controller<br />
PCI Device<br />
Universal Serial Bus (USB) Controller<br />
Unknown Device</p>

<p>update?</p>
]]>
        </description>
    </item>
    <item>
        <title>Multimedia Audio Controller, etc.</title>
        <link>https://forum.up-community.org/discussion/2277/multimedia-audio-controller-etc</link>
        <pubDate>Wed, 20 Sep 2017 22:09:15 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Edgett</dc:creator>
        <guid isPermaLink="false">2277@/discussions</guid>
        <description><![CDATA[I installed Windows 10, patched it, and installed the chipset, graphics, ppm-apl, and Serial IO drivers.<br /><br />
I still have the following "Other devices" with missing drivers.<br /><br />
[ul]<br />
[li]Multimedia Audio Controller[/li]<br />
[li]Universal Serial Bus (USB) Controller[/li]<br />
[li]Unknown device[/li]<br />
[li]Unknown device[/li]<br />
[/ul]<br /><br />
Where do I get these drivers?]]>
        </description>
    </item>
    <item>
        <title>Screen Blinking</title>
        <link>https://forum.up-community.org/discussion/2418/screen-blinking</link>
        <pubDate>Mon, 30 Oct 2017 20:27:24 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Kenneth Coley</dc:creator>
        <guid isPermaLink="false">2418@/discussions</guid>
        <description><![CDATA[Prior to loading latest BIOS and drivers, my screen would blink at least once a minute.<br />
I am connected to 4K monitor.  After the upgrades, its better (once every 5 mins or so)<br />
but not fixed.  I am using Redstone 1 version of Windows 10.  Any other suggestions?]]>
        </description>
    </item>
    <item>
        <title>Still having major problems with drivers</title>
        <link>https://forum.up-community.org/discussion/2689/still-having-major-problems-with-drivers</link>
        <pubDate>Fri, 22 Dec 2017 18:52:49 +0000</pubDate>
        <category>UP Squared Windows</category>
        <dc:creator>Mark Furiate</dc:creator>
        <guid isPermaLink="false">2689@/discussions</guid>
        <description><![CDATA[<p>I am still having major problems with device drivers on the UpSquared Windows10.  I have checked that the BIOS is up to date and installed the available drivers but the USB drivers and the PCI Device drivers are not working. I also still have a list of "Unknown Device(s). This is basic stuff and should not be happening in a device in general production. I have plans for the entire UpBoard line but this really needs to be addressed ASAP for that to be possible.</p>

<p>I am also having a  problem with the installation and use of Cellular modem(s) using the PCIe slot. I am certain that this is due to the drivers available for the PCIe.  I have initiatives that required 5-10K of these devices but I will have to move to another product if this can not be resolved.</p>

<p>I would like to see a direct sales operation / point of contact so that we can work through the use of product with something more than a wild west forum. Can someone please contact me to have a serious business discussion and address our needs in using your product(s)?</p>

<p>I look forward to hearing from you.</p>
]]>
        </description>
    </item>
   </channel>
</rss>
