<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Учебный курс AVR. Использование внешних прерываний в AVR</title>
		<description>Discuss Учебный курс AVR. Использование внешних прерываний в AVR</description>
		<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html</link>
		<lastBuildDate>Sun, 05 Apr 2026 14:44:50 +0000</lastBuildDate>
		<generator>JComments</generator>
		<atom:link href="https://chipenable.ru/index.php/component/jcomments/feed/com_k2/105.html" rel="self" type="application/rss+xml" />
		<item>
			<title>Azerhud says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-4764</link>
			<description><![CDATA[при компиляции в codevision avr выдаёт Linker error: D:\Ci\Book_C\Ex ternalInterrupt -CVAVR\External Interrupt\lcd_l ib.h(49): function 'LCD_Init' declared, but never defined]]></description>
			<dc:creator>Azerhud</dc:creator>
			<pubDate>Fri, 25 Mar 2016 05:49:19 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-4764</guid>
		</item>
		<item>
			<title>Валентин says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-4509</link>
			<description><![CDATA[А как быть с защитой от дребезга? Скажем, мне надо чтобы переменная по нажатию инвертировалась .]]></description>
			<dc:creator>Валентин</dc:creator>
			<pubDate>Sat, 09 May 2015 03:52:35 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-4509</guid>
		</item>
		<item>
			<title>alexan9er says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-4334</link>
			<description><![CDATA[Поэкспериментир овал тут с кнопкой и пришёл к выводу что нельзя так делать как вы пишите. Внешнее прерывание на AVR самое приоритетное и любые паузы (у вас цикл) тормозят таймеры. Если считается время это будет существенно. Кроме того от длительного нажатия вы защитились,зада в прерывание по спадающему фронту, но так нельзя будет обрабатывать события по долгому нажатию (например короткое нажатие - одно событие, долгое - другое). Получается что кнопки на внешние прерывания лучше вообще не вешать, а опрашивать их состояние периодически?]]></description>
			<dc:creator>alexan9er</dc:creator>
			<pubDate>Mon, 10 Nov 2014 00:01:14 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-4334</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2469</link>
			<description><![CDATA[Вот здесь есть пример http://chipenable.ru/index.php/programming-avr/item/140-bootloader-avr-xmega.html]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Sun, 03 Feb 2013 17:11:48 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2469</guid>
		</item>
		<item>
			<title>Юрий_789 says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2467</link>
			<description><![CDATA[Подскажите можно по прерыванию сделать переход на начало основной программы. Или куда важней перейти по определённому адресу программы. (наподобие команды "goto").]]></description>
			<dc:creator>Юрий_789</dc:creator>
			<pubDate>Sun, 03 Feb 2013 15:00:44 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2467</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2279</link>
			<description><![CDATA[Это означает, установить глобальный флаг разрешения прерываний. В CodeVision эта строчка выглядит так - #asm("sei") А вообще в конце статьи есть проект для CodeVision AVR.]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Mon, 17 Dec 2012 19:12:47 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2279</guid>
		</item>
		<item>
			<title>Павел says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2272</link>
			<description><![CDATA[У вас код написан в синтаксе IAR, а я пишу в CVAVR, подскажите пожалуйста что означает сторчка: __enable_interr upt(); и каков ее аналог в CVAVR? Я понимаю что это связано как то с разрешением или обьявлением прерываний но разаобратья не могу.]]></description>
			<dc:creator>Павел</dc:creator>
			<pubDate>Fri, 14 Dec 2012 16:51:49 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2272</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2171</link>
			<description><![CDATA[Это зависит от приложения и условий его использования. Для повышения надежности обычно ставят.]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Mon, 22 Oct 2012 21:23:16 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2171</guid>
		</item>
		<item>
			<title>foxit says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2170</link>
			<description><![CDATA[Нужно ли выводы внешних прерываний притягивать через резистор к питанию или земле, чтобы не ловить внешние наводки?]]></description>
			<dc:creator>foxit</dc:creator>
			<pubDate>Mon, 22 Oct 2012 14:11:40 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-2170</guid>
		</item>
		<item>
			<title>Имярек says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1732</link>
			<description><![CDATA[Последний штрих к шедевру, весьма важный. Опишите, что на Си нельзя применять для программного сброса флага прерывания операцию: GIFR |= (1 ]]></description>
			<dc:creator>Имярек</dc:creator>
			<pubDate>Tue, 27 Sep 2011 13:29:11 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1732</guid>
		</item>
		<item>
			<title>Имярек says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1731</link>
			<description><![CDATA[Последний штрих к шедевру, весьма важный :) Опишите, что на Си нельзя применять для программного сброса флага прерывания операцию: GIFR |= (1]]></description>
			<dc:creator>Имярек</dc:creator>
			<pubDate>Tue, 27 Sep 2011 13:26:18 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1731</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1723</link>
			<description><![CDATA[Исправил]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Sat, 24 Sep 2011 13:04:10 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1723</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1713</link>
			<description><![CDATA[1. Единицы, единицы... Мне уже сделали замечание по этому поводу, просто еще руки не дошли исправить текст.]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Mon, 19 Sep 2011 06:09:37 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1713</guid>
		</item>
		<item>
			<title>Максимка says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1712</link>
			<description><![CDATA[1."Флаги сбрасываются аппаратно, когда вызывается обработчики прерываний. Также их можно сбросить программно, записав в регистр нули". Разве нули? 2. Наверно надо указать, что при прерывании по уровню его флаг всегда == 0.]]></description>
			<dc:creator>Максимка</dc:creator>
			<pubDate>Mon, 19 Sep 2011 05:26:03 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1712</guid>
		</item>
		<item>
			<title>foxit says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1711</link>
			<description><![CDATA[Спасибо]]></description>
			<dc:creator>foxit</dc:creator>
			<pubDate>Mon, 19 Sep 2011 03:34:48 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1711</guid>
		</item>
		<item>
			<title>Валентин says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1710</link>
			<description><![CDATA[Хорошая статья, спасибо! Как раз тут делал заказ, пригодились нюансы!]]></description>
			<dc:creator>Валентин</dc:creator>
			<pubDate>Sun, 18 Sep 2011 15:17:02 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1710</guid>
		</item>
		<item>
			<title>Имярек says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1708</link>
			<description><![CDATA[Ну какой еще секрет? Пины все были заняты, вот и пришлось для связи устройства по двум проводам с Хостом применить токовые "ШИМ" посылки. Ширина импульса определяет 0 или 1. Запустил таймер - и на заданное время в Idle-sleep. Получается, что по линии идут токовые импульсы, т.к. потребление Activ vs Sleep раза в 3-4 различается.]]></description>
			<dc:creator>Имярек</dc:creator>
			<pubDate>Sun, 18 Sep 2011 08:20:02 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1708</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1707</link>
			<description><![CDATA[Ну а как насчет того, чтобы поделиться с общественностью тонкостями реализации данного интерфейса? Думаю не одному мне это было бы интересно.]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Sat, 17 Sep 2011 21:32:58 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1707</guid>
		</item>
		<item>
			<title>Имярек says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1702</link>
			<description><![CDATA[Не одними портами может общаться AVR с внешним миром. Мой тиня-AVR много лет общается с удаленным Хостом при помощи изменения собственного потребляющего тока. И отлично себя чувствует. :)]]></description>
			<dc:creator>Имярек</dc:creator>
			<pubDate>Sat, 17 Sep 2011 16:22:30 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1702</guid>
		</item>
		<item>
			<title>Гость says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1701</link>
			<description><![CDATA[Так вот же статья на эту тему http://chipenable.ru/index.php/programming-c/43-avr-usart-uart.html]]></description>
			<dc:creator>Гость</dc:creator>
			<pubDate>Fri, 16 Sep 2011 10:51:40 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1701</guid>
		</item>
		<item>
			<title>Cudi says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1700</link>
			<description><![CDATA[Pashgan, напиши пожалуйста статью про UART, посылка сигналов, установка битов и т.д.)) И очень интересно увидеть как с компьютера можно управлять МК, помигать светиком и т.п.))]]></description>
			<dc:creator>Cudi</dc:creator>
			<pubDate>Fri, 16 Sep 2011 10:25:19 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1700</guid>
		</item>
		<item>
			<title>Dima says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1699</link>
			<description><![CDATA[Спасибо, наконец то разобрался.]]></description>
			<dc:creator>Dima</dc:creator>
			<pubDate>Fri, 16 Sep 2011 09:49:39 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1699</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1698</link>
			<description><![CDATA[Да, исправлю. Мой косяк.]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Thu, 15 Sep 2011 14:09:45 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1698</guid>
		</item>
		<item>
			<title>Cudi says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1697</link>
			<description><![CDATA[Всё понял спасибо]]></description>
			<dc:creator>Cudi</dc:creator>
			<pubDate>Thu, 15 Sep 2011 14:02:17 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1697</guid>
		</item>
		<item>
			<title>iVIT says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1696</link>
			<description><![CDATA[Хорошая статья для начинающих. Единственное замечание: Цитата - "Флаги сбрасываются аппаратно, когда вызывается обработчики прерываний. Также их можно сбросить программно, записав в регистр нули." В AVR флаги сбрасываются записью в них логической единицы, исправьте.]]></description>
			<dc:creator>iVIT</dc:creator>
			<pubDate>Thu, 15 Sep 2011 13:54:20 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1696</guid>
		</item>
		<item>
			<title>anonymous says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1695</link>
			<description><![CDATA[Сорри, весь проект не могу, коммерческая тайна, а в условиях Белоруссии может и национальная. Отправил только заголовочный файл, где описываются эти регистры sfr.h Если так ничего не придумаете то ничего, в принципе на версии 4.20 работает, а IAR в параллель работает нормально.]]></description>
			<dc:creator>anonymous</dc:creator>
			<pubDate>Thu, 15 Sep 2011 12:10:32 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1695</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1694</link>
			<description><![CDATA[Скинь проект мне на почту, я посмотрю. microsmaster собакаяндексточ кару]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Thu, 15 Sep 2011 11:36:58 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1694</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1693</link>
			<description><![CDATA[1. flagInt0 - это произвольная переменная. С таким же успехом можно назвать ее, например, button1. 2. В начале программы выполняется инициализация flagInt0.Если этого не сделать в переменной может быть что угодно. флаг сигнализирует о том что была нажата кнопка, после обработки нажатия (вывод строки) он сбрасывается. 3. не понял вопроса]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Thu, 15 Sep 2011 11:24:51 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1693</guid>
		</item>
		<item>
			<title>Cudi says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1692</link>
			<description><![CDATA[Пару вопросов: 1) if (flagInt0) - почему именно flagint0? 2) Почему в цикле есть flagInt0 = 0; итак же ясно что флагинт0 = 0, ещё в самом верху. 3) flagInt0 = 1; в конце. т.е. в 1 вопросе флагинт0 = 1 ?]]></description>
			<dc:creator>Cudi</dc:creator>
			<pubDate>Thu, 15 Sep 2011 10:58:39 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1692</guid>
		</item>
		<item>
			<title>JoJo says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1691</link>
			<description><![CDATA[Я почему то так и подумал]]></description>
			<dc:creator>JoJo</dc:creator>
			<pubDate>Thu, 15 Sep 2011 10:50:51 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1691</guid>
		</item>
		<item>
			<title>Cudi says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1690</link>
			<description><![CDATA[А всё окей)) JTAG забыл вырубить))]]></description>
			<dc:creator>Cudi</dc:creator>
			<pubDate>Thu, 15 Sep 2011 10:46:22 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1690</guid>
		</item>
		<item>
			<title>JoJo says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1689</link>
			<description><![CDATA[При нажатии на кнопку выводит на дисплей строку "On", а после секундной задержки строку "Off".]]></description>
			<dc:creator>JoJo</dc:creator>
			<pubDate>Thu, 15 Sep 2011 10:27:08 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1689</guid>
		</item>
		<item>
			<title>Cudi says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1688</link>
			<description><![CDATA[Записал программу, а она не работает...]]></description>
			<dc:creator>Cudi</dc:creator>
			<pubDate>Thu, 15 Sep 2011 10:26:30 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1688</guid>
		</item>
		<item>
			<title>Cudi says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1687</link>
			<description><![CDATA[а что программа делает?]]></description>
			<dc:creator>Cudi</dc:creator>
			<pubDate>Thu, 15 Sep 2011 09:54:18 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1687</guid>
		</item>
		<item>
			<title>anonymous says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1685</link>
			<description><![CDATA[Ну да там так и написано static volatile __io struct { BYTE _P0:1, _P1:1, _P2:1, _P3:1, _P4:1, _P5:1, _P6:1, _P7:1; } _DDRA @ 0x1A; , а линковщик IAR 5.51 ругается на такие определения, говорит Error[e46]: Undefined external "_MCUCR" referred in TCore Тут же запускаю версию IAR 4.20 и компиляция работает без проблем, всё линкуется]]></description>
			<dc:creator>anonymous</dc:creator>
			<pubDate>Thu, 15 Sep 2011 07:44:51 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1685</guid>
		</item>
		<item>
			<title>Pashgan says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1684</link>
			<description><![CDATA[А так?
__io struct{
...
}_P ORTA @ 0x21;]]></description>
			<dc:creator>Pashgan</dc:creator>
			<pubDate>Thu, 15 Sep 2011 06:44:02 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1684</guid>
		</item>
		<item>
			<title>anonymous says:</title>
			<link>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1682</link>
			<description><![CDATA[Спасибо за статью. Вижу у вас IAR 5.11, не скажите как исправить старую программу написанную на IAR 4? А то 5й не воспринимает подобную запись: struct { ... } _PORTA @ 0x21; Выдаёт ошибку Error[e46]: Undefined external]]></description>
			<dc:creator>anonymous</dc:creator>
			<pubDate>Thu, 15 Sep 2011 06:16:29 +0000</pubDate>
			<guid>https://chipenable.ru/index.php/programming-avr/105-uchebnyy-kurs-ispolzovanie-vneshnih-preryvaniy-v-avr.html#comment-1682</guid>
		</item>
	</channel>
</rss>
