<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Arduino GIGA Display Shield - 2023 Videos				            </title>
            <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/</link>
            <description>Discussion board for Robotics, Arduino, Raspberry Pi and other DIY electronics and modules. Join us today!</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 10 May 2026 15:06:58 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46728</link>
                        <pubDate>Sat, 06 Apr 2024 12:58:44 +0000</pubDate>
                        <description><![CDATA[@droidwerx I started messing with computers in `1959 and was fully hardware trained on IBM 1401 and 360 65. That goes back to the days of discrete components (transistors, resistors etc) and...]]></description>
                        <content:encoded><![CDATA[<p>@droidwerx I started messing with computers in `1959 and was fully hardware trained on IBM 1401 and 360 65. That goes back to the days of discrete components (transistors, resistors etc) and cycle times in the millisecs. With machines that slow the NMI was needed. For us using machines 1,000+ times faster, it is less critical. Also, since you are writing all and/or any ISR's, you can ake sure that the lower priority ISR routines are written in a way that allows that one top priority ISR to be able to respond in a time frame that will be extremely close to that of an NMI. If you care to read the documentation, I think you will be impressed as I was at the sophistication of the interrupt system available on modern day processors.</p>
<p>IIRC, ALL GPIO pins on the GIGA are available for interrupts BUT I have not seen enough documentation yet to determine if like other Arduino boards that there are x pins per PORT. If for instance there are 3 pins per port, then the number of independent interrupts is (76GPIO - 16special) / 3 equals 20 discrete interrupts.</p>
<p>Of course you have to decide between External interrupts and Pin Change interrupts (see below) but with at least 20 discrete interrupts to work with it is hard to see someone running out of them.</p>
<blockquote>
<p><span>The major difference between INTx external interrupts &amp; PCINT is that </span><strong>PCINT interrupts are grouped into 3 interrupt signals one for each port</strong><span>. If any pin in any port has changed state, the whole port is suspected to have changed.</span></p>
</blockquote>
<p>I hope that helps to clarify interrupts a bit more.</p>
<p>I tried to find the documentation I saw a couple days ago with a lot of detailed info but couldn't. If I do find it I will post back here with the link.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>Ron</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46728</guid>
                    </item>
				                    <item>
                        <title>RE: Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46720</link>
                        <pubDate>Sat, 06 Apr 2024 01:24:42 +0000</pubDate>
                        <description><![CDATA[Well it seems this topic is quite the rabbit hole &#x1f644;. Sounds like a little bit hardware and software! Not just cut and dried like, I&#039;m sure everyone would have preferred.]]></description>
                        <content:encoded><![CDATA[<p>Well it seems this topic is quite the rabbit hole &#x1f644;. Sounds like a little bit hardware and software! Not just cut and dried like, I'm sure everyone would have preferred.  </p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>Droidwerx</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46720</guid>
                    </item>
				                    <item>
                        <title>RE: Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46671</link>
                        <pubDate>Thu, 04 Apr 2024 15:32:18 +0000</pubDate>
                        <description><![CDATA[@davee @droidwerx Pretty much agree. I have done a couple of skims of the datasheet and there is quite a bit to the interrupt capabilities. My thought also was that a priority 1 MIGHT be the...]]></description>
                        <content:encoded><![CDATA[<p>@davee <span>@</span><span>droidwerx</span> Pretty much agree. I have done a couple of skims of the datasheet and there is quite a bit to the interrupt capabilities. My thought also was that a priority 1 MIGHT be the equivalent to an NMI.</p>
<p>If we remind ourselves what an NMI is and why we 'need' it, it's simply the highest (what if more than 1) priority interrupt and to answer the second part of the self question, it's needed in case an unknowing coder forgets or does not know about an interrupt that is of the highest priority. Since we are talking about MPU/MCU devices, there is almost always only a single programmer as opposed to a team of many so by definition we know about that highest priority as we are designing and implementing the application.</p>
<p>I suspect that what the OP was really asking is if there are pins on the Giga Display that can be used as an interrupt for some purpose like maybe vblank interval in order to update some critical portion of the screen. I am too lazy right bow to go refresh my memory, but my hunch is YES.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>Ron</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46671</guid>
                    </item>
				                    <item>
                        <title>RE: Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46669</link>
                        <pubDate>Thu, 04 Apr 2024 15:16:08 +0000</pubDate>
                        <description><![CDATA[Hi Ron @zander,
  You are probably right in saying there is not an NMI option.
  But if an interrupt is set to &#039;top priority&#039;, and the programmer does not disable all interrupts, then I su...]]></description>
                        <content:encoded><![CDATA[<p>Hi Ron @zander,</p>
<p>  You are probably right in saying there is not an NMI option.</p>
<p>  But if an interrupt is set to 'top priority', and the programmer does not disable all interrupts, then I suggest it should approximate to the same thing, albeit I have never tried this scenario. The implication being that if a piece of code needs protecting from interrupts, excluding the 'top priority' one, then the interrupt priority system is invoked.</p>
<p>Of course, this requires the programmer to cooperate, whilst the original NMI pin was always active. The upside is that a pin is not 'wasted' for applications that did not have a use for the NMI capability.</p>
<p>Sorry, but I don't know how easy and convenient using the priority system is in practice. I suggest the total 'convenience' assessment may depend on the application's reason for needing an NMI capability, and the circuitry being used to drive the NMI input to the microcontroller.</p>
<p>I regard this as the type of question that needs some preliminary 'feasibility' R&amp;D, when considering an application that appears to need an NMI style capability.</p>
<p>And sorry Ron, but I can't help you with suggestions for a good reason for buying a Giga board with a display ... but ponder on it for a day or three ... something may occur to you. &#x1f60e; </p>
<p>Best wishes, Dave</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>DaveE</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46669</guid>
                    </item>
				                    <item>
                        <title>RE: Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46662</link>
                        <pubDate>Thu, 04 Apr 2024 02:51:51 +0000</pubDate>
                        <description><![CDATA[@droidwerx @davee I was looking at the datasheet for that beast. It is an extremely sophisticated piece of hardware. It looks like al 168 interrupts are of the maskable type, no mention of N...]]></description>
                        <content:encoded><![CDATA[<p>@<span>droidwerx @davee I was looking at the datasheet for that beast. It is an extremely sophisticated piece of hardware. It looks like al 168 interrupts are of the maskable type, no mention of NMI but there are 16 levels of priority. I wish I had a reason to buy one because they are pricey for just playing with. The combination with the display is a little enticing but I need a reason and so far no luck.</span></p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>Ron</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46662</guid>
                    </item>
				                    <item>
                        <title>RE: Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46660</link>
                        <pubDate>Wed, 03 Apr 2024 23:56:01 +0000</pubDate>
                        <description><![CDATA[Hi @droidwerx,
Re NMI query
It is a long time since I saw NMI as a topic of conversation ...
 I am not familiar with the Arduino Giga, nor the processor at its heart, but a quick Google s...]]></description>
                        <content:encoded><![CDATA[<p>Hi @droidwerx,</p>
<p>Re NMI query</p>
<p>It is a long time since I saw NMI as a topic of conversation ...</p>
<p> I am not familiar with the Arduino Giga, nor the processor at its heart, but a quick Google said it was based on the STM32H747XIH6, and the data sheet for the group of devices that that one is a member of, headlines with "Up to 168 I/O ports with interrupt capability".</p>
<p>Because modern processors usually have a large number of possible interrupt sources, they have to include some hardware to prioritise and mask multiple interrupts on a preconfigured control basis. This means you can effectively preset any one of a considerable number of pins to behave rather like a dedicated NMI pin, and hence there is no need to dedicate a specific pin to the role, when designing the chip.</p>
<p>Of course, it may also imply a fair bit of manual reading, etc. to figure out how to programme it to do a task that previously only requiring wiring to the pin labelled NMI &#x1f644; </p>
<p>So, whilst it is basically still a hardware function at 'run time', I expect it to require at least a little software in the 'boot' section to achieve the result.</p>
<p>As I say, I have only glanced at the datasheet, but I have described the general story I have seen in other processors in the more recent past. I hope it is at least 'roughly' correct.</p>
<p>Best wishes, Dave</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>DaveE</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46660</guid>
                    </item>
				                    <item>
                        <title>RE: Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46655</link>
                        <pubDate>Wed, 03 Apr 2024 21:13:02 +0000</pubDate>
                        <description><![CDATA[Watched your video on the Giga several times, I was looking to find out which pins that can be used as a dedicated NMI interrupt. I have looked at documentation and google searches and I can...]]></description>
                        <content:encoded><![CDATA[<p>Watched your video on the Giga several times, I was looking to find out which pins that can be used as a dedicated NMI interrupt. I have looked at documentation and google searches and I can't find a straight answer,  :( or is Arduino using any Digital pin and using software to make it look like an NMI interrupt ?</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>Droidwerx</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-46655</guid>
                    </item>
				                    <item>
                        <title>Arduino GIGA Display Shield</title>
                        <link>https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-44219</link>
                        <pubDate>Thu, 30 Nov 2023 13:24:10 +0000</pubDate>
                        <description><![CDATA[The Arduino Giga Display Shield is a touchscreen display with an IMU, microphone, RGB LED, and camera connectorhave already looked at the Arduino Giga; it’s an advanced microcontroller that ...]]></description>
                        <content:encoded><![CDATA[<p>The Arduino Giga Display Shield is a touchscreen display with an IMU, microphone, RGB LED, and camera connector.<br /><br />https://youtu.be/X-ujesEYZrE<br /><br />We have already looked at the Arduino Giga; it’s an advanced microcontroller that brings the horsepower of the Portenta series to a board with an Arduino Mega format.<br /><br />Today, we will look at an exciting accessory for the Giga, the Arduino Giga Display Shield. This is a full-featured 800x480 TFT display with a capacitive touch screen. It also has an onboard IMU so you can read the display orientation, a MEMS microphone, and an RGB LED. There is also an extension of the Giga’s existing camera connector on the front of the display.<br /><br />This device is called a “shield,” but it actually mounts on the underside of the GIGA board, using the display and camera connectors. This arrangement makes for a very straightforward hardware setup, and you can still use conventional shields on the Arduino when the display is mounted.<br /><br />In this video, I will walk you through all the features of the Arduino Giga Display Shield. Here is the Table of Contents for today's presentation:<br /><br />00:00 - Introduction<br />01:25 - Arduino Giga Display Shield<br />05:08 - Getting Started<br />06:47 - RGB LED Coding<br />08:26 - IMU Coding<br />10:30 - Microphone Coding<br />14:54 - ArduinoGraphics Library<br />16:32 - ArduinoGraphics Library Demo<br />19:13 - Arduino Logo Demo<br />21:42 - Displaying Your Own Images<br />25:04 - GFX Library<br />26:20 - GFX Library Demo<br />29:33 - LVGL Library &amp; Framework<br />32:10 - LVGL Demo Code<br />36:42 - LVGL with IMU and Image<br />39:49 - Touch Screen Intro<br />40:58 - Touch Screen Polling Demo<br />43:44 - Touch Screen Interrupt Demo<br />46:10 - Camera<br />48:22 - Camera Demo<br />53:02 - Conclusion<br /><br />I think that this display would make an ideal “master control panel,” perhaps for an Arduino IoT Cloud project. You can expect to see it again in another video!</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/2023-videos/">2023 Videos</category>                        <dc:creator>DroneBot Workshop</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/2023-videos/arduino-giga-display-shield/#post-44219</guid>
                    </item>
							        </channel>
        </rss>
		